-
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) · 1.04 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "nsb",
"version": "0.0.4",
"description": "A simple, modern SoundBoard",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimonMTS/NSB.git"
},
"author": "SimonMTS",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/SimonMTS/NSB/issues"
},
"homepage": "https://github.com/SimonMTS/NSB#readme",
"devDependencies": {
"electron": "^6.0.12",
"electron-builder": "^21.2.0",
"electron-packager": "^14.0.6",
"electron-rebuild": "^1.8.6"
},
"dependencies": {
"electron-store": "^5.0.0",
"iohook": "^0.6.1",
"naudiodon": "^2.1.0",
"wav": "^1.0.2"
},
"build": {
"productName": "NSB",
"appId": "NSB",
"win": {
"target": [
"portable"
],
"icon": "./build/icon.ico"
},
"portable": {
"artifactName": "NSB.exe"
}
}
}