forked from electron-vite/vite-plugin-electron-renderer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "@sillot/vite-plugin-electron-renderer",
"version": "0.0.11",
"description": "Support use Node.js API in Electron-Renderer",
"main": "index.mjs",
"types": "types",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./*": "./*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hi-Windom/vite-plugin-electron-renderer.git"
},
"author": "soltus",
"license": "MIT",
"scripts": {
"dev": "vite build --watch",
"build": "tsc --emitDeclarationOnly && vite build",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest run"
},
"dependencies": {
"lib-esm": "~0.3.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"esbuild": "^0.16.11",
"rollup": "^3.8.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-utils": "^0.4.0",
"vitest": "^0.28.3"
},
"files": [
"types",
"index.mjs",
"index.js",
"builtins"
],
"keywords": [
"vite",
"plugin",
"electron",
"renderer"
]
}