-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
69 lines (69 loc) · 2.09 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
{
"name": "@nuxt-devtools/monorepo",
"type": "module",
"version": "1.6.0",
"private": true,
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git https://github.com/nuxt/devtools.git"
},
"scripts": {
"build": "pnpm -r --filter=\"./packages/**/*\" run build",
"stub": "pnpm -r run stub",
"dev": "pnpm run stub && pnpm -C packages/devtools dev",
"lint": "eslint --cache .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "pnpm test && bumpp -r -x \"pnpm run changelog\" --all",
"test": "pnpm lint",
"docs": "nuxi dev docs",
"docs:build": "CI=true nuxi generate docs",
"typecheck": "vue-tsc --noEmit",
"postinstall": "npx simple-git-hooks && pnpm -C docs install",
"prepare": "pnpm -r --filter=\"./packages/*\" run dev:prepare"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/ni": "catalog:",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-ui-kit": "workspace:*",
"@nuxt/eslint": "catalog:",
"@nuxt/module-builder": "catalog:",
"@nuxt/schema": "catalog:",
"@opentelemetry/api": "catalog:",
"@types/markdown-it": "catalog:",
"@types/node": "catalog:",
"@types/which": "catalog:",
"@types/ws": "catalog:",
"@unocss/eslint-config": "catalog:",
"bumpp": "catalog:",
"conventional-changelog-cli": "catalog:",
"eslint": "catalog:",
"eslint-flat-config-utils": "catalog:",
"eslint-plugin-antfu": "catalog:",
"eslint-plugin-format": "catalog:",
"esno": "catalog:",
"execa": "catalog:",
"lint-staged": "catalog:",
"nuxt": "catalog:",
"nuxt-eslint-auto-explicit-import": "catalog:",
"pathe": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"ua-parser-js": "catalog:",
"unocss": "catalog:",
"vite-hot-client": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"resolutions": {
"esbuild": "^0.23.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}