forked from nuxt/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"version": "0.4.5",
"private": false,
"packageManager": "[email protected]",
"scripts": {
"build": "pnpm -r --filter=\"./packages/**/*\" run build",
"stub": "pnpm -r run stub",
"dev": "pnpm run stub && pnpm -C packages/devtools dev",
"lint": "eslint .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm test && bumpp -r -x \"pnpm run changelog\" --all && pnpm -r publish",
"test": "pnpm lint",
"docs": "nuxi dev docs",
"typecheck": "vue-tsc --noEmit",
"postinstall": "npx simple-git-hooks",
"prepare": "pnpm -r run dev:prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@antfu/ni": "^0.21.3",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-ui-kit": "workspace:*",
"@nuxt/module-builder": "^0.3.1",
"@types/fs-extra": "^11.0.1",
"@types/markdown-it": "^12.2.3",
"@types/node": "^18.16.3",
"@types/pacote": "^11.1.5",
"@types/wait-on": "^5.3.1",
"@types/which": "^3.0.0",
"@types/ws": "^8.5.4",
"@unocss/eslint-config": "^0.51.8",
"bumpp": "^9.1.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.39.0",
"esno": "^0.16.3",
"execa": "^7.1.1",
"lint-staged": "^13.2.2",
"nuxt": "^3.4.3",
"pathe": "^1.1.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"unocss": "^0.51.8",
"vue-tsc": "^1.6.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}