-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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": "ed-jukebox",
"version": "0.0.5",
"description": "A companion app for Elite: Dangerous that makes your favorite soundtrack responsive to in-game events",
"main": "main.js",
"scripts": {
"start": "electron .",
"start-css": "zsh -f less.zsh; electron .",
"start-win": "zsh -f less.zsh; node_modules/.bin/electron .",
"install-wsl": "export npm_config_platform=win32 && npm install",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "npx electron-builder --dir",
"dist": "npx electron-builder",
"dist-mwl": "npx electron-builder -mwl",
"dist-win": "npx electron-builder --win",
"dist-winspaces": "node node_modules/.bin/electron-builder",
"make-icns": "bash -c 'if type iconutil &> /dev/null; then mkdir -p build; iconutil --convert icns icon/Icon.iconset && mv icon/Icon.icns build/icon.icns; else echo '\\''iconutil not available'\\''; fi'",
"make-icon": "npm run make-icns; cp -v icon/icon.iconset/[email protected] build/icon.png"
},
"keywords": [
"elite-dangerous",
"music",
"games"
],
"author": "SilverWolf",
"license": "MIT",
"devDependencies": {
"electron": "^9.0.4",
"electron-builder": "^22.7.0",
"eventemitter3": "^4.0.4",
"less": "^3.11.3"
},
"dependencies": {
"chokidar": "^3.4.0"
},
"build": {
"appId": "com.electron.SilverWolf32.ed-jukebox",
"asar": false,
"win": {
"target": "portable"
}
}
}