-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"description": "⚡️ Nuxt Generation CLI Experience",
"license": "MIT",
"repository": "nuxt/cli",
"scripts": {
"dev:prepare": "pnpm -r dev:prepare",
"build": "pnpm -r build",
"build:stub": "pnpm -r dev:prepare",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"nuxi": "node ./bin/nuxi.mjs",
"nuxi-bun": "bun --bun ./bin/nuxi.mjs",
"prepack": "pnpm -r build",
"release": "pnpm test && changelogen --release && node ./scripts/release.mjs && git push --follow-tags",
"test:types": "tsc --noEmit",
"test:knip": "knip",
"test:dist": "pnpm -r test:dist",
"test:unit": "vitest --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@nuxt/eslint-config": "^0.7.5",
"@types/node": "^22.10.7",
"@vitest/coverage-v8": "^3.0.2",
"changelogen": "^0.5.7",
"eslint": "^9.18.0",
"knip": "^5.42.2",
"pkg-pr-new": "^0.0.39",
"std-env": "^3.8.0",
"tinyexec": "^0.3.2",
"typescript": "^5.7.3",
"vitest": "^3.0.2",
"vue": "^3.5.13"
},
"resolutions": {
"@nuxt/cli": "workspace:*",
"@nuxt/schema": "3.15.2",
"create-nuxt-app": "workspace:*",
"h3": "^1.13.1",
"nitropack": "npm:nitropack-nightly",
"nuxi": "workspace:*"
}
}