-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "create-vite-extra",
"version": "4.2.0",
"description": "Extra Vite templates",
"type": "module",
"license": "MIT",
"author": "Bjorn Lu",
"bin": {
"create-vite-extra": "index.js"
},
"files": [
"index.js",
"template-*",
"!template-*/dist",
"!template-*/node_modules",
"!template-*/package-lock.json",
"!template-*/pnpm-lock.yaml",
"!template-*/deno.lock"
],
"main": "index.js",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluwy/create-vite-extra.git"
},
"bugs": {
"url": "https://github.com/bluwy/create-vite-extra/issues"
},
"homepage": "https://github.com/bluwy/create-vite-extra#readme",
"scripts": {
"format": "prettier --write .",
"update-deps": "pnpm update -r --latest && node update-deno-deps.js"
},
"packageManager": "pnpm@10.28.2",
"dependencies": {
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"prettier": "^3.8.1"
}
}