forked from nukeop/nuclear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.24 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "nuclear",
"version": "0.4.0",
"description": "Streaming music player that finds music sources automatically.",
"main": "main.js",
"scripts": {
"start": "npm-run-all --parallel watch electron",
"electron": "electron .",
"watch": "webpack-dev-server --inline --progress --env=dev",
"build:dist": "webpack --progress --colors --env=prod",
"test": "echo \"Error: no test specified\" && exit 1",
"pack": "electron-builder --dir --em.main=main.prod.js",
"dist": "electron-builder --em.main=main.prod.js",
"build:linux": "electron-builder --em.main=main.prod.js --linux",
"build:windows": "electron-builder --em.main=main.prod.js --windows",
"build:macos": "electron-builder --em.main=main.prod.js --macos",
"build:all": "electron-builder --em.main=main.prod.js -mwl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nukeop/nuclear.git"
},
"keywords": [
"electron",
"music",
"youtube"
],
"author": "nukeop",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/nukeop/nuclear/issues"
},
"homepage": "https://github.com/nukeop/nuclear#readme",
"dependencies": {
"electron-platform": "^1.2.0",
"font-awesome": "^4.7.0",
"lowdb": "^0.16.2",
"md5": "^2.2.1",
"numeral": "^2.0.6",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router-transition": "^0.1.1",
"react-sound": "^0.8.0",
"semantic-ui-react": "^0.72.0",
"ytdl-core": "^0.15.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.5",
"css-loader": "^0.28.4",
"electron": "^1.7.5",
"electron-builder": "^19.24.1",
"electron-devtools-installer": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"google-fonts-webpack-plugin": "^0.3.2",
"lodash": "^4.17.4",
"node-sass": "^4.5.3",
"nodebrainz": "^2.1.1",
"npm-run-all": "^4.0.2",
"react-debounce-input": "^3.0.0",
"react-fontawesome": "^1.6.1",
"react-hot-loader": "next",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.1",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"optionalDependencies": {
"dbus": "^1.0.0",
"mpris-service": "^1.1.3"
},
"build": {
"appId": "nuclear",
"productName": "nuclear",
"icon": "resources/media/icon.icns",
"directories": {
"output": "release"
},
"files": [
"dist/",
"index.prod.html",
"main.prod.js",
"mpris.js",
"package.json"
],
"extraFiles": [
"resources"
],
"linux": {
"target": [
"AppImage",
"deb",
"tar.gz"
],
"category": "Audio;AudioVideo;Network;Player;Music"
},
"mac": {
"category": "public.app-category.music",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"portable"
]
}
}
}