-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 931 Bytes
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 931 Bytes
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
{
"name": "zcode-usage-widget",
"version": "2.0.6",
"description": "ZCode 用量监控桌面组件(Electron 版,真磨砂 Acrylic)",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --win --x64"
},
"dependencies": {
"koffi": "3.1.5"
},
"devDependencies": {
"electron": "^35.0.0",
"electron-builder": "^25.1.8"
},
"build": {
"appId": "Oct1AtJoe.ZCodeUsageWidget",
"productName": "ZCode Usage Widget",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"icon.ico",
"package.json"
],
"asarUnpack": [
"node_modules/koffi/**/*"
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "icon.ico"
},
"nsis": {
"oneClick": true,
"perMachine": false
}
}
}