forked from electron-vite/vite-plugin-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 967 Bytes
/
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
{
"name": "vite-plugin-electron",
"version": "0.11.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"
},
"./*": "./*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electron-vite/vite-plugin-electron.git"
},
"author": "草鞋没号 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest run"
},
"devDependencies": {
"rollup": "^3.17.2",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vitest": "^0.28.5"
},
"files": [
"dist",
"electron-env.d.ts"
],
"keywords": [
"vite",
"plugin",
"electron",
"renderer"
]
}