forked from electron-vite/vite-plugin-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "vite-plugin-electron",
"version": "0.28.2",
"description": "Electron 🔗 Vite",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./plugin": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.mjs",
"require": "./dist/plugin.js"
},
"./simple": {
"types": "./dist/simple.d.ts",
"import": "./dist/simple.mjs",
"require": "./dist/simple.js"
},
"./*": "./*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-vite/vite-plugin-electron.git"
},
"author": "草鞋没号 <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc",
"test": "vitest run",
"prepublishOnly": "npm run build && npm run test"
},
"peerDependencies": {
"electron": "^28.0.0",
"tree-kill": "*",
"vite-plugin-electron-renderer": "*"
},
"peerDependenciesMeta": {
"tree-kill": {
"optional": true
},
"electron": {
"optional": true
},
"vite-plugin-electron-renderer": {
"optional": true
}
},
"devDependencies": {
"rollup": "^4.9.1",
"tree-kill": "^1.2.2",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-electron-renderer": "^0.14.5",
"vitest": "^1.1.0"
},
"files": [
"dist",
"electron-env.d.ts",
"plugin.d.ts",
"simple.d.ts"
],
"keywords": [
"vite",
"plugin",
"electron",
"renderer"
]
}