-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "electron-audiostation",
"version": "2.0.0",
"description": "A Synology AudioStation client run on macOS and Windows.",
"main": "main.js",
"scripts": {
"start": "electron .",
"electron:linux": "electron-builder build --linux",
"electron:windows": "electron-builder build --windows",
"electron:mac": "electron-builder build --mac"
},
"author": {
"name": "milkfish",
"email": "[email protected]",
"url": "https://www.milkfish.site"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sdjnmxd/electron-audiostation.git"
},
"devDependencies": {
"electron": "^15.3.0",
"electron-builder": "^22.14.5"
},
"build": {
"appId": "moe.mxd.Electron-AudioStation",
"productName": "Electron AudioStation",
"copyright": "milkfish",
"directories": {
"output": "release/"
},
"win": {
"icon": "assets/icon.png",
"target": [
"portable",
"nsis"
]
},
"mac": {
"icon": "assets/icon.png",
"target": [
"dmg"
]
},
"linux": {
"icon": "assets/icon.png",
"target": [
"rpm"
]
}
},
"dependencies": {
"electron-store": "^8.0.1",
"electron-prompt": "^1.7.0"
}
}