-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1010 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1010 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
48
49
{
"name": "flashbox",
"version": "1.0.0",
"description": "FlashBox - 运行需要 Flash 插件的老页游的桌面壳(基于 Electron 11.5.0 + PPAPI Flash)",
"main": "main.js",
"author": "",
"license": "MIT",
"private": true,
"scripts": {
"start": "electron .",
"dist": "electron-builder"
},
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "23.6.0"
},
"build": {
"appId": "com.flashbox.app",
"productName": "FlashBox",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"lib/**/*",
"renderer/**/*",
"package.json"
],
"extraResources": [
{
"from": "plugins",
"to": "plugins",
"filter": ["**/*", "!README.md"]
}
],
"win": {
"target": [
{
"target": "portable",
"arch": ["x64"]
}
]
},
"portable": {
"artifactName": "FlashBox-${version}-portable.exe"
}
}
}