-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "nuxi-workspace",
"type": "module",
"private": true,
"packageManager": "pnpm@10.3.0",
"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",
"test:types": "tsc --noEmit",
"test:knip": "knip",
"test:dist": "pnpm -r test:dist",
"test:unit": "vitest --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.0",
"@nuxt/eslint-config": "^1.0.1",
"@types/node": "^22.13.1",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^3.0.5",
"changelogen": "^0.5.7",
"eslint": "^9.20.1",
"knip": "^5.44.0",
"pkg-pr-new": "^0.0.39",
"semver": "^7.7.1",
"std-env": "^3.8.0",
"tinyexec": "^0.3.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5",
"vue": "^3.5.13"
},
"resolutions": {
"@nuxt/cli": "workspace:*",
"@nuxt/schema": "3.15.4",
"create-nuxt-app": "workspace:*",
"h3": "^1.15.0",
"nitropack": "npm:nitropack-nightly",
"nuxi": "workspace:*"
}
}