forked from electron-vite/create-electron-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "create-electron-vite",
"version": "0.7.0",
"type": "module",
"description": "Scaffolding Your Electron + Vite Project",
"license": "MIT",
"author": "草鞋没号 <[email protected]>",
"homepage": "https://github.com/electron-vite/create-electron-vite#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/electron-vite/create-electron-vite.git"
},
"bugs": {
"url": "https://github.com/electron-vite/create-electron-vite/issues"
},
"main": "index.js",
"bin": {
"create-electron-vite": "index.js",
"cev": "index.js"
},
"files": [
"dist",
"electron",
"template-*/**",
"index.js"
],
"keywords": [
"electron",
"vite",
"scaffold",
"starter"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"watch": "vite build --watch",
"build": "vite build",
"prepublishOnly": "npm run build && npm run test",
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@types/prompts": "^2.4.9",
"execa": "^8.0.1",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
},
"packageManager": "[email protected]"
}