-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.3",
"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": "^8.2.0",
"@codspeed/vitest-plugin": "^5.4.0",
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/nitro-server": "^4.4.4",
"@nuxt/test-utils": "^4.0.3",
"@types/node": "^24.12.2",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^4.1.5",
"changelogen": "^0.6.2",
"eslint": "^10.3.0",
"exsolve": "^1.0.8",
"knip": "^6.11.0",
"nuxt": "^4.4.4",
"pkg-pr-new": "^0.0.70",
"semver": "^7.7.4",
"std-env": "^4.1.0",
"tinyexec": "^1.1.2",
"typescript": "^6.0.3",
"vitest": "^4.1.5",
"vue": "^3.5.33",
"vue-router": "^5.0.6"
}
}