-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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
51
52
53
54
{
"name": "flash-speed-desktop",
"version": "0.4.0-nightly.2026.6.24",
"description": "Flash Speed Player - SWF Player with Speed Control",
"author": "Flash Speed",
"main": "main.js",
"scripts": {
"start": "electron .",
"dist": "electron-builder --dir",
"pack": "electron-builder --dir"
},
"build": {
"appId": "com.flashspeed.player",
"productName": "Flash Speed Player",
"asar": true,
"files": [
"main.js",
"preload.js",
"renderer/**/*",
"package.json"
],
"extraResources": [
{
"from": "native/flash-speed-player.exe",
"to": "native/flash-speed-player.exe"
},
{
"from": "native/ruffle.exe",
"to": "native/ruffle.exe"
},
{
"from": "native/LICENSE.md",
"to": "native/LICENSE.md"
},
{
"from": "native/README.md",
"to": "native/README.md"
},
{
"from": "assets/flash-speed-player.ico",
"to": "native/app.ico"
}
],
"win": {
"icon": "assets/flash-speed-player.ico",
"target": ["dir"],
"artifactName": "${productName}-${version}-win-${arch}.${ext}"
}
},
"devDependencies": {
"electron": "42.5.0",
"electron-builder": "^26.15.3"
}
}