-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
132 lines (132 loc) · 3.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-scan",
"version": "0.0.4",
"description": "Scan your React app for renders",
"keywords": [
"react",
"react-scan",
"react scan",
"render",
"performance"
],
"homepage": "https://github.com/aidenybai/react-scan#readme",
"bugs": {
"url": "https://github.com/aidenybai/react-scan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidenybai/react-scan.git"
},
"license": "MIT",
"author": {
"name": "Aiden Bai",
"email": "[email protected]",
"url": "https://million.dev"
},
"sideEffects": false,
"type": "commonjs",
"exports": {
"./package.json": "./package.json",
".": {
"production": {
"import": {
"types": "./dist/rsc-shim.d.mts",
"react-server": "./dist/rsc-shim.mjs",
"default": "./dist/rsc-shim.mjs"
},
"require": {
"types": "./dist/rsc-shim.d.ts",
"react-server": "./dist/rsc-shim.js",
"default": "./dist/rsc-shim.js"
}
},
"development": {
"import": {
"types": "./dist/index.d.mts",
"react-server": "./dist/rsc-shim.mjs",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"react-server": "./dist/rsc-shim.js",
"default": "./dist/index.js"
}
},
"default": {
"import": {
"types": "./dist/index.d.mts",
"react-server": "./dist/rsc-shim.mjs",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"react-server": "./dist/rsc-shim.js",
"default": "./dist/index.js"
}
}
},
"./auto": {
"production": {
"import": {
"types": "./dist/rsc-shim.d.mts",
"react-server": "./dist/rsc-shim.mjs",
"default": "./dist/rsc-shim.mjs"
},
"require": {
"types": "./dist/rsc-shim.d.ts",
"react-server": "./dist/rsc-shim.js",
"default": "./dist/rsc-shim.js"
}
},
"development": {
"import": {
"types": "./dist/auto.d.mts",
"react-server": "./dist/rsc-shim.mjs",
"default": "./dist/auto.mjs"
},
"require": {
"types": "./dist/auto.d.ts",
"react-server": "./dist/rsc-shim.js",
"default": "./dist/auto.js"
}
}
},
"./dist/*": "./dist/*.js",
"./dist/*.js": "./dist/*.js",
"./dist/*.mjs": "./dist/*.mjs"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/auto.global.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"LICENSE",
"auto.d.ts"
],
"scripts": {
"build": "NODE_ENV=production tsup",
"dev": "NODE_ENV=development tsup --watch",
"lint": "eslint 'src/**/*.{ts,tsx}' --fix",
"prettier": "prettier --config .prettierrc.mjs -w src",
"publint": "publint"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-reconciler": "^0.28.8",
"@vercel/style-guide": "^6.0.0",
"eslint": "^8.57.1",
"prettier": "^3.3.3",
"publint": "^0.2.12",
"react": "*",
"react-dom": "*",
"react-reconciler": "^0.29.2",
"terser": "^5.36.0",
"tsup": "^8.2.4"
},
"publishConfig": {
"access": "public"
}
}