-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
49 lines (49 loc) · 1.13 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
{
"name": "vite-plugin-electron-renderer",
"version": "0.14.6",
"description": "Support use Node.js API in Electron-Renderer",
"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-renderer.git"
},
"author": "草鞋没号 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"types": "tsc --emitDeclarationOnly",
"prepublishOnly": "npm run build && npm run test",
"test": "vitest run"
},
"devDependencies": {
"electron": "^32.1.2",
"esbuild": "^0.23.1",
"lib-esm": "^0.4.2",
"node-fetch": "^3.3.2",
"rollup": "^4.22.0",
"serialport": "^12.0.0",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-utils": "^0.4.3",
"vitest": "^2.1.1"
},
"files": [
"dist"
],
"keywords": [
"vite",
"plugin",
"electron",
"renderer"
]
}