forked from vuejs/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.92 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
{
"name": "@vue/devtools-monorepo",
"type": "module",
"version": "7.0.4",
"private": true,
"packageManager": "[email protected]",
"description": "DevTools for Vue.js",
"author": "webfansplz",
"license": "MIT",
"homepage": "https://github.com/vuejs/devtools-next#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/devtools-next.git"
},
"bugs": {
"url": "https://github.com/vuejs/devtools-next/issues"
},
"keywords": [
"vue-devtools",
"dx"
],
"engines": {
"node": ">=v18.12.0"
},
"scripts": {
"stub:shared": "nr -C packages/shared stub",
"stub:core": "nr -C packages/core stub",
"stub:devtools-kit": "nr -C packages/devtools-kit stub",
"stub:schema": "nr -C packages/schema stub",
"stub:overlay": "nr -C packages/overlay stub",
"stub:client": "nr -C packages/client stub",
"stub:vite": "nr -C packages/vite stub",
"stub:devtools-api": "nr -C packages/devtools-api stub",
"build:shared": "nr -C packages/shared build",
"build:core": "nr -C packages/core build",
"build:devtools-kit": "nr -C packages/devtools-kit build",
"build:devtools": "nr -C packages/devtools build",
"build:schema": "nr -C packages/schema build",
"build:overlay": "nr -C packages/overlay build",
"build:client": "nr -C packages/client build",
"build:electron": "nr -C packages/electron build",
"build:ui": "nr -C packages/ui build",
"build:vite": "nr -C packages/vite build",
"build:devtools-api": "nr -C packages/devtools-api build",
"dev:browser-extension": "nr -C packages/browser-extension dev",
"dev:ui-story": "nr -C packages/ui story:dev",
"dev:ui-play": "nr -C packages/ui-playground dev",
"prepare:type": "pnpm -r --filter='./packages/**' run prepare:type",
"dev": "NODE_OPTIONS=\"--max-old-space-size=8192\" nr prepare:type && nr build:ui && pnpm -r --parallel --filter='./packages/**' run stub",
"build": "pnpm -r --filter='./packages/{schema,shared,core,ui,devtools-kit,vite}' run build && pnpm build:client && pnpm build:overlay && pnpm build:browser-extension && pnpm build:electron && pnpm build:devtools && pnpm build:devtools-api",
"build:browser-extension": "nr -C packages/browser-extension build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"release": "bumpp -r && nr build && pnpm -r publish --access public",
"release:beta": "bumpp -r && nr build && pnpm -r publish --access public --tag beta",
"dep:up": "taze -I major -r",
"prepare": "simple-git-hooks",
"test": "vitest",
"play": "nr -C packages/playground dev",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"zip": "tsx ./scripts/extension-zip.ts",
"gen:vue-apis": "tsx ./scripts/vue-api-manifest.ts"
},
"devDependencies": {
"@antfu/eslint-config": "2.4.2",
"@antfu/ni": "^0.21.12",
"@types/chrome": "^0.0.254",
"@types/degit": "^2.8.6",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.6",
"@unocss/eslint-plugin": "^0.58.3",
"@vue/devtools-core": "workspace:^",
"@vue/devtools-schema": "workspace:^",
"archiver": "^6.0.1",
"bumpp": "^9.2.1",
"cross-env": "^7.0.3",
"degit": "^2.8.4",
"eslint": "npm:[email protected]",
"eslint-plugin-format": "^0.1.0",
"eslint-ts-patch": "8.55.0-1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"pnpm": "^8.14.0",
"progress": "^2.0.3",
"readdir-glob": "^1.1.3",
"regex-extra": "^0.2.2",
"simple-git-hooks": "^2.9.0",
"taze": "^0.13.1",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unocss": "^0.58.3",
"vite": "^5.0.10",
"vitest": "^1.1.1",
"vue": "^3.4.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}