-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "palbum",
"version": "0.1.1",
"author": {
"name": "António Ramadas",
"url": "https://github.com/antonio-ramadas"
},
"license": "MIT",
"keywords": [
"spotify"
],
"engines": {
"node": ">= 10.15.1"
},
"homepage": "./",
"main": "public/electron.js",
"repository": "github:antonio-ramadas/palbum",
"description": "Resume playing Spotify albums/playlists (no long start from the beginning)",
"scripts": {
"postinstall": "chmod +x postinstall.sh && sh postinstall.sh && electron-builder install-app-deps",
"lint": "node_modules/.bin/eslint .",
"start": "npm run start-dev",
"start-dev": "concurrently \"BROWSER=none npm run react\" \"wait-on http://localhost:3000 && npm run electron\"",
"electron": "electron public/electron.js",
"react": "react-scripts start",
"test": "react-scripts test",
"build": "react-scripts build",
"eject": "react-scripts eject",
"preelectron-build-unpacked": "npm run build",
"electron-build-unpacked": "electron-builder --dir",
"preelectron-pack": "npm run build",
"electron-pack": "electron-builder -c.extraMetadata.main=build/electron.js"
},
"dependencies": {
"electron-is-dev": "^1.0.1",
"electron-store": "^2.0.0",
"fuse.js": "^3.3.0",
"menubar": "^5.2.3",
"mousetrap": "^1.6.2",
"mousetrap-global-bind": "^1.1.0",
"spotify-authentication": "0.3.0",
"spotify-context-history": "^0.3.1",
"spotify-web-api-node": "^4.0.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"electron": "^3.0.10",
"electron-builder": "^20.38.4",
"eslint-config-airbnb": "^17.1.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-scripts": "^2.1.5",
"wait-on": "^3.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"build": {
"appId": "antonio-ramadas.palbum",
"productName": "Palbum",
"mac": {
"category": "public.app-category.music",
"icon": "build/icon.png",
"darkModeSupport": true
},
"win": {
"icon": "build/windows-icon.png"
},
"linux": {
"category": "Audio",
"icon": "build/icon.png"
}
}
}