-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.04 KB
/
package.json
File metadata and controls
34 lines (34 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
{
"name": "amazon-music-mac",
"productName": "Amazon Music",
"version": "0.0.2",
"description": "Amazon Music (IN) Mac App",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scriptspry/amazon-music-mac.git"
},
"scripts": {
"start": "electron .",
"clean": "rm -rf build/*",
"build": "npm run clean; electron-packager ./ --platform=darwin --arch=x64 --out=build --overwrite --icon=logo.icns",
"install-app": "npm run build; cp -r 'build/Amazon Music-darwin-x64/Amazon Music.app/' '/Applications/Amazon Music.app'",
"package": "npm run build; cd 'build/Amazon Music-darwin-x64'; 7z a ../AmazonMusic.zip .; cd -"
},
"keywords": [
"Amazon Music",
"India",
"Mac",
"App"
],
"author": "ScriptSpry",
"license": "MIT",
"bugs": {
"url": "https://github.com/scriptspry/amazon-music-mac/issues"
},
"homepage": "http://scriptspry.com/2018/03/02/amazon-music-mac-app.html",
"devDependencies": {
"electron": "^1.8.4",
"electron-packager": "^11.0.1"
}
}