-
-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
46 lines (46 loc) · 1.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
{
"private": true,
"author": "webfansplz",
"license": "MIT",
"homepage": "https://github.com/webfansplz/vite-plugin-vue-inspector#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webfansplz/vite-plugin-vue-inspector.git"
},
"bugs": {
"url": "https://github.com/webfansplz/vite-plugin-vue-inspector/issues"
},
"scripts": {
"play:nuxt": "pnpm run -r --filter=./packages/playground/nuxt dev",
"play:vue3": "pnpm run -r --filter=./packages/playground/vue3 dev",
"play:vue2": "pnpm run -r --filter=./packages/playground/vue2 dev",
"lint": "eslint --fix --ext .js,.ts,.vue .",
"dev": "pnpm run -r --filter=./packages/core dev",
"build": "pnpm run -r --filter=./packages/{core,unplugin} build",
"release": "pnpm build && changeset && changeset version && changeset publish"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@changesets/cli": "^2.26.2",
"@types/node": "^20.8.0",
"eslint": "^8.50.0",
"esmo": "^0.17.0",
"fs-extra": "^11.1.1",
"nodemon": "^3.0.1",
"tsup": "^7.2.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vite": "^5.0.5",
"vite-plugin-inspect": "^0.7.40",
"vue": "^3.3.4"
},
"pnpm": {
"packageExtensions": {
"vue-template-compiler": {
"peerDependencies": {
"vue": "^2.6.14"
}
}
}
}
}