-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.83 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
{
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@11.25.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 .",
"bench:cli": "node --experimental-strip-types bench/run.ts",
"docs:generate": "node --experimental-strip-types ./scripts/generate-command-docs.ts",
"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:docs": "node --experimental-strip-types ./scripts/generate-command-docs.ts --check",
"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": "^9.3.0",
"@codspeed/vitest-plugin": "^5.7.1",
"@nuxt/eslint-config": "^1.17.0",
"@nuxt/nitro-server": "^4.5.2",
"@nuxt/test-utils": "^4.2.0",
"@types/node": "^24.13.3",
"@vitest/coverage-v8": "^4.1.11",
"ansivision": "^0.4.0",
"changelogen": "^0.6.2",
"eslint": "^10.9.1",
"exsolve": "^1.1.1",
"fast-check": "^4.9.0",
"knip": "^6.33.0",
"nf3": "^0.3.24",
"nuxt": "^4.5.2",
"pkg-pr-new": "^0.0.88",
"rolldown": "^1.2.6",
"rollup-plugin-visualizer": "^7.1.1",
"std-env": "^4.2.0",
"tinyexec": "^1.3.0",
"tsdown": "^0.22.14",
"typescript": "^6.0.3",
"unplugin-purge-polyfills": "^0.1.0",
"uqr": "^0.1.3",
"vitest": "^4.1.11",
"vue": "^3.5.42",
"vue-router": "^5.3.0"
}
}