-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@nuxt/cli",
"type": "module",
"version": "3.37.0",
"description": "Nuxt CLI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/cli.git",
"directory": "packages/nuxt-cli"
},
"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"
],
"engines": {
"node": "^22.19.0 || ^24.11.0 || >=26.0.0"
},
"scripts": {
"build": "tsdown",
"dev:prepare": "tsdown --watch",
"prepack": "tsdown",
"test:dist": "node --experimental-strip-types ../../scripts/check-dist.ts && node --experimental-strip-types ../../scripts/check-youch.ts"
},
"peerDependencies": {
"@nuxt/schema": "^4.5.2",
"jiti": "^2.7.0",
"oxc-parser": ">=0.143.0",
"rolldown": "^1.0.0-rc.16 || ^1.0.0",
"serve": "^14.2.6"
},
"peerDependenciesMeta": {
"@nuxt/schema": {
"optional": true
},
"jiti": {
"optional": true
},
"oxc-parser": {
"optional": true
},
"rolldown": {
"optional": true
},
"serve": {
"optional": true
}
},
"dependencies": {
"@bomb.sh/tab": "^0.0.21",
"@clack/prompts": "^1.7.0",
"args-tokenizer": "^0.3.0",
"citty": "^0.2.2",
"clickable-path": "^0.0.1",
"confbox": "^0.2.4",
"consola": "^3.4.2",
"defu": "^6.1.7",
"exsolve": "^1.1.1",
"fuzzysort": "^3.1.0",
"get-port-please": "^3.2.0",
"nypm": "^0.6.9",
"obug": "^2.1.4",
"pathe": "^2.0.3",
"perfect-debounce": "^2.1.0",
"pkg-types": "^2.3.1",
"rc9": "^3.0.1",
"scule": "^1.3.0",
"srvx": "^0.12.5",
"std-env": "^4.2.0",
"tinyclip": "^1.0.1",
"tinyexec": "^1.3.0",
"uqr": "^0.1.3",
"verkit": "^0.3.1"
},
"devDependencies": {
"@nuxt/kit": "^4.5.2",
"@nuxt/schema": "^4.5.2",
"@nuxt/test-utils": "^4.1.0",
"@speed-highlight/core": "^1.2.23",
"@types/node": "^24.13.3",
"giget": "^3.3.1",
"h3": "^1.15.11",
"jiti": "^2.7.0",
"nitro": "^3.0.1-alpha.2",
"nitropack": "^2.13.4",
"rolldown": "^1.2.1",
"rollup": "^4.62.4",
"tsdown": "^0.22.14",
"typescript": "^7.0.2",
"undici": "^8.10.0",
"vitest": "^4.1.10",
"youch": "^4.1.1",
"youch-core": "^0.3.3"
}
}