-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
92 lines (92 loc) · 2.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "nuxi",
"version": "3.15.0",
"description": "⚡️ Nuxt Generation CLI Experience",
"repository": "nuxt/cli",
"license": "MIT",
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./cli": "./bin/nuxi.mjs"
},
"types": "./dist/index.d.ts",
"bin": {
"nuxi": "./bin/nuxi.mjs",
"nuxi-ng": "./bin/nuxi.mjs",
"nuxt": "./bin/nuxi.mjs",
"nuxt-cli": "./bin/nuxi.mjs"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev:prepare": "unbuild --stub",
"build": "unbuild",
"build:stub": "unbuild --stub",
"dev": "node ./bin/nuxi.mjs dev ./playground",
"dev:bun": "bun --bun ./bin/nuxi.mjs dev ./playground",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"nuxi": "node ./bin/nuxi.mjs",
"nuxi-bun": "bun --bun ./bin/nuxi.mjs",
"prepack": "unbuild",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags",
"test": "pnpm lint && pnpm test:types && pnpm build && pnpm test:dist",
"test:dist": "node ./bin/nuxi.mjs info ./playground",
"test:types": "tsc --noEmit",
"test:unit": "vitest --coverage"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.6.1",
"@nuxt/kit": "^3.14.0",
"@nuxt/schema": "^3.14.0",
"@nuxt/test-utils": "^3.14.4",
"@types/http-proxy": "^1.17.15",
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"@types/ws": "^8.5.13",
"@vitest/coverage-v8": "^2.1.4",
"c12": "^2.0.1",
"changelogen": "^0.5.7",
"chokidar": "^4.0.1",
"citty": "^0.1.6",
"clipboardy": "^4.0.0",
"colorette": "^2.0.20",
"consola": "^3.2.3",
"destr": "^2.0.3",
"eslint": "^9.14.0",
"execa": "^9.5.1",
"fuse.js": "^7.0.0",
"giget": "^1.2.3",
"h3": "^1.13.0",
"httpxy": "^0.1.5",
"jiti": "^2.4.0",
"listhen": "^1.9.0",
"magicast": "^0.3.5",
"mlly": "^1.7.2",
"nuxt": "^3.14.0",
"nypm": "^0.3.12",
"ofetch": "^1.4.1",
"pathe": "^1.1.2",
"perfect-debounce": "^1.0.0",
"pkg-types": "^1.2.1",
"scule": "^1.3.0",
"semver": "^7.6.3",
"unbuild": "^2.0.0",
"unplugin-purge-polyfills": "^0.0.7",
"unws": "^0.2.4",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10",
"ws": "^8.18.0"
},
"resolutions": {
"h3": "^1.13.0",
"nitropack": "npm:nitropack-nightly",
"nuxt": "^3.14.0"
},
"packageManager": "pnpm@9.12.3",
"engines": {
"node": "^16.10.0 || >=18.0.0"
}
}