-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.71 KB
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
{
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@10.32.0",
"description": "⚡️ Nuxt Generation CLI Experience",
"license": "MIT",
"repository": "nuxt/cli",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r build --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"nuxi": "node ./packages/nuxi/bin/nuxi.mjs",
"nuxt": "node ./packages/nuxt-cli/bin/nuxi.mjs",
"nuxi-bun": "bun --bun ./packages/nuxt-cli/bin/nuxi.mjs",
"postinstall": "node --experimental-strip-types ./scripts/generate-data.ts && pnpm build",
"test:types": "tsc --noEmit",
"test:knip": "knip",
"test:dist": "pnpm -r test:dist",
"test:unit": "vitest --coverage --run && pnpm --filter nuxt-cli-playground test --run"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.0",
"@codspeed/vitest-plugin": "^5.2.0",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/nitro-server": "^4.3.1",
"@nuxt/test-utils": "^4.0.0",
"@types/node": "^24.12.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.0.18",
"changelogen": "^0.6.2",
"eslint": "^10.0.3",
"exsolve": "^1.0.8",
"knip": "^5.86.0",
"nuxt": "^4.3.1",
"pkg-pr-new": "^0.0.65",
"semver": "^7.7.4",
"std-env": "^3.10.0",
"tinyexec": "^1.0.2",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"vue": "^3.5.30",
"vue-router": "^5.0.3"
},
"resolutions": {
"@nuxt/cli": "workspace:*",
"@nuxt/schema": "4.3.1",
"create-nuxt": "workspace:*",
"create-nuxt-app": "workspace:*",
"eslint-plugin-jsdoc": "62.7.1",
"eslint-plugin-unicorn": "63.0.0",
"h3": "^1.15.6",
"nitropack": "latest",
"nuxi": "workspace:*"
}
}