-
-
Notifications
You must be signed in to change notification settings - Fork 8k
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1014 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1014 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
44
{
"name": "create-vite",
"version": "9.0.3",
"type": "module",
"license": "MIT",
"author": "Evan You",
"bin": {
"create-vite": "index.js",
"cva": "index.js"
},
"files": [
"index.js",
"template-*",
"dist"
],
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"typecheck": "tsc",
"prepublishOnly": "npm run build",
"execute": "node index.js"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vitejs/vite.git",
"directory": "packages/create-vite"
},
"bugs": {
"url": "https://github.com/vitejs/vite/issues"
},
"homepage": "https://github.com/vitejs/vite/tree/main/packages/create-vite#readme",
"funding": "https://github.com/vitejs/vite?sponsor=1",
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@vercel/detect-agent": "^1.2.1",
"cross-spawn": "^7.0.6",
"mri": "^1.2.0",
"picocolors": "^1.1.1",
"tsdown": "^0.21.4"
}
}