-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "Glee",
"version": "0.3.2",
"description": "能不能做最好的网易云音乐播放器之一呢 😶",
"main": "main.js",
"author": {
"name": "nondanee",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nondanee/Glee.git"
},
"scripts": {
"postinstall": "electron-rebuild",
"start": "electron .",
"package:win": "electron-packager . --platform=win32 --arch=x64 --icon=./resource/glee.ico --out=./dist --overwrite=true",
"package:mac": "electron-packager . --platform=darwin --arch=all --icon=./resource/glee.icns --out=./dist --overwrite=true",
"package:linux": "electron-packager . --platform=linux --arch=x64 --icon=./resource/glee.png --out=./dist --overwrite=true"
},
"build": {
"appId": "com.nondanee.glee"
},
"devDependencies": {
"electron": "^6.1.3",
"electron-packager": "^14.0.6",
"electron-rebuild": "^1.8.6"
},
"dependencies": {
"@webcomponents/html-imports": "^1.2.4",
"node-id3": "^0.1.11"
},
"optionalDependencies": {
"windows-swca": "^2.0.2"
}
}