forked from nuxt/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
{
"name": "@nuxt-devtools/monorepo",
"type": "module",
"version": "1.3.9",
"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 .",
"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",
"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": "^2.21.2",
"@antfu/ni": "^0.21.12",
"@nuxt/devtools": "workspace:*",
"@nuxt/devtools-ui-kit": "workspace:*",
"@nuxt/module-builder": "~0.6.0",
"@nuxt/schema": "^3.12.3",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.14.9",
"@types/which": "^3.0.4",
"@types/ws": "^8.5.10",
"@unocss/eslint-config": "^0.61.0",
"bumpp": "^9.4.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.6.0",
"eslint-plugin-format": "^0.1.2",
"esno": "^4.7.0",
"execa": "^7.2.0",
"lint-staged": "^15.2.7",
"nuxt": "^3.12.2",
"pathe": "^1.1.2",
"simple-git-hooks": "^2.11.1",
"taze": "^0.14.1",
"tiged": "^2.12.7",
"typescript": "^5.5.3",
"ua-parser-js": "^1.0.38",
"unocss": "^0.61.0",
"vite-hot-client": "^0.2.3",
"vue": "^3.4.31",
"vue-tsc": "^2.0.24"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}