-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
72 lines (72 loc) · 1.81 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
{
"name": "vite-plugin-react-inspector",
"version": "0.0.0",
"packageManager": "pnpm@7.1.5",
"description": "",
"author": "sudongyuer",
"license": "MIT",
"funding": "https://github.com/sponsors/sudongyuer",
"homepage": "https://github.com/sudongyuer/vite-plugin-react-inspector#readme",
"repository": "https://github.com/sudongyuer/vite-plugin-react-inspector",
"bugs": "https://github.com/sudongyuer/vite-plugin-react-inspector/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"typecheck": "tsc --noEmit",
"changeset": "changeset add",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix",
"try": "tsx src/index.ts",
"build:all": "pnpm turbo run build",
"version": "changeset version",
"release": "pnpm build:all && pnpm release:only",
"release:only": "changeset publish",
"remove:node_modules": "pnpx rimraf ./**/node_modules"
},
"dependencies": {
"chalk": "^5.0.1",
"magic-string": "^0.26.2",
"shell-quote": "^1.7.3"
},
"devDependencies": {
"@changesets/cli": "^2.23.2",
"@sudongyuer/eslint-config": "^0.1.3",
"@types/node": "^18.0.0",
"eslint": "^8.18.0",
"pnpm": "^7.3.0",
"tsx": "^3.6.0",
"turbo": "^1.2.16",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.2"
},
"eslintConfig": {
"extends": [
"@sudongyuer"
]
}
}