-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 908 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 908 Bytes
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
{
"name": "create-nuxt",
"type": "module",
"version": "3.34.0",
"description": "Create a Nuxt app in seconds",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/cli.git",
"directory": "packages/create-nuxt"
},
"exports": {
".": "./dist/index.mjs",
"./cli": "./bin/create-nuxt.mjs"
},
"types": "./dist/index.d.ts",
"bin": {
"create-nuxt": "bin/create-nuxt.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": "^16.10.0 || >=18.0.0"
},
"scripts": {
"build": "tsdown",
"prepack": "tsdown"
},
"dependencies": {
"citty": "^0.2.0"
},
"devDependencies": {
"@bomb.sh/tab": "^0.0.12",
"@types/node": "^24.10.12",
"rollup": "^4.57.1",
"rollup-plugin-visualizer": "^7.0.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"unplugin-purge-polyfills": "^0.1.0"
}
}