forked from kirklin/create-vite-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
{
"name": "create-vite-boot",
"type": "module",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "Scaffolding Your First web app Project",
"author": "Kirk Lin <[email protected]> (https://github.com/kirklin)",
"license": "MIT",
"homepage": "https://github.com/kirklin/create-vite-boot",
"repository": {
"type": "git",
"url": "git+https://github.com/kirklin/create-vite-boot.git",
"directory": "/"
},
"bugs": {
"url": "https://github.com/kirklin/create-vite-boot/issues"
},
"main": "index.js",
"bin": {
"create-vite-boot": "index.js",
"cva": "index.js"
},
"files": [
"index.js",
"boot-*",
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm run build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@kirklin/eslint-config": "^0.1.2",
"@types/cross-spawn": "^6.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^18.7.15",
"@types/prompts": "^2.0.14",
"degit": "^2.8.4",
"bumpp": "^8.2.1",
"cross-spawn": "^7.0.3",
"eslint": "^8.22.0",
"esno": "^0.16.3",
"kolorist": "^1.6.0",
"minimist": "^1.2.6",
"pnpm": "^7.9.0",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"unbuild": "^0.8.8",
"vite": "^3.0.7",
"vitest": "^0.22.0"
}
}