-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
44
{
"name": "Software-Soundboard",
"version": "1.0.0",
"description": "A Piece of software that makes soundboard noises with mp3's",
"main": "main.js",
"scripts": {
"start": "electron .",
"startWithTransparentOption": "electron --enable-transparent-visuals .",
"startWithAllOptions": "electron --enable-transparent-visuals --disable-gpu .",
"pack": "electron-builder --dir",
"dist-win": "electron-builder --win portable",
"dist-nix": "electron-builder"
},
"keywords": [
"darts",
"algorithm",
"tutorial"
],
"author": "Group 7",
"license": "GPLv3",
"devDependencies": {
"electron": "latest",
"electron-builder": "^22.14.5"
},
"build": {
"appId": "Software-Soundboard",
"mac": {
"category": "softwaresoundboard.app.game.executable"
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "NSIS"
}
},
"dependencies": {
"electron-log": "^4.4.1",
"fs-extra": "^9.0.0"
}
}