-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "vite-plugin-electron-builder",
"version": "0.1.0",
"license": "MIT",
"description": "Easily Build Your vite With Electron",
"repository": "https://github.com/467057463/vite_plugin_electron_builder.git",
"author": "M2 <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"vite_plugin_electron_builder": "bin/index.js"
},
"scripts": {
"dev": "tsc -p . -w --incremental",
"build": "rimraf dist && run-s build-bundle build-types",
"build-bundle": "esbuild src/index.ts --bundle --platform=node --target=node12 --external:electron-builder --external:electron --external:esbuild --external:chalk --external:fs-extra --outfile=dist/index.js",
"build-types": "tsc -p . --emitDeclarationOnly --outDir temp && api-extractor run && rimraf temp"
},
"keywords": [
"vite-plugin",
"vite",
"electron",
"electron-builder"
],
"devDependencies": {
"@microsoft/api-extractor": "^7.18.5",
"@types/node": "^16.6.1",
"npm-run-all": "^4.1.5",
"typescript": "^4.3.5",
"vite": "^2.5.0"
},
"dependencies": {
"builtin-modules": "^3.2.0",
"cac": "^6.7.3",
"chalk": "^4.1.2",
"ejs": "^3.1.6",
"electron": "^13.1.9",
"electron-builder": "^22.11.11",
"electron-devtools-installer": "^3.2.0",
"esbuild": "^0.12.20",
"fs-extra": "^8.1.0"
}
}