forked from nuxt/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.71 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
{
"name": "@nuxt-devtools/monorepo",
"type": "module",
"version": "0.7.4",
"private": true,
"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 --filter=\"./packages/*\" run dev:prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.8",
"@antfu/ni": "^0.21.5",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-ui-kit": "workspace:*",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.6.5",
"@types/markdown-it": "^12.2.3",
"@types/node": "^20.4.5",
"@types/pacote": "^11.1.5",
"@types/wait-on": "^5.3.1",
"@types/which": "^3.0.0",
"@types/ws": "^8.5.5",
"@unocss/eslint-config": "^0.54.1",
"bumpp": "^9.1.1",
"conventional-changelog-cli": "^3.0.0",
"eslint": "8.46.0",
"esno": "^0.17.0",
"execa": "^7.2.0",
"gray-matter": "^4.0.3",
"lint-staged": "^13.2.3",
"nuxt": "^3.6.5",
"pathe": "^1.1.1",
"simple-git-hooks": "^2.9.0",
"taze": "^0.11.2",
"tiged": "^2.12.5",
"typescript": "^5.1.6",
"ua-parser-js": "^1.0.35",
"unocss": "^0.54.1",
"vite-hot-client": "^0.2.1",
"vue-tsc": "^1.8.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}