This repository has been archived by the owner on Dec 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
126 lines (126 loc) · 3.31 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
124
125
126
{
"name": "nighthawk",
"version": "2.1.1",
"author": "Tarak Sharma <tarak.scope@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/quantumkv/nighthawk"
},
"bugs": {
"url": "https://github.com/quantumkv/nighthawk/issues"
},
"description": "A Stealthy,Cross-Platform, Simple Music Player that stays out of your way",
"main": "./dist/main.bundle.js",
"scripts": {
"start": "electron ./dist/main.bundle.js",
"development": "rimraf dist && webpack --watch --config ./webpack.dev.js --progress --colors",
"production": "rimraf dist && webpack --config ./webpack.prod.js --progress --colors",
"lint": "tslint --project .",
"pack": "yarn production && electron-builder --dir",
"dist": "yarn production && electron-builder -mwl -c.mac.identity=null"
},
"keywords": [
"music",
"player",
"electron",
"tray",
"desktop",
"background"
],
"build": {
"appId": "com.quantumkv.nighthawk",
"productName": "Nighthawk",
"compression": "normal",
"artifactName": "${name}-${os}-v${version}-${arch}.${ext}",
"directories": {
"output": "pkgs"
},
"files": [
"dist/**/*"
],
"mac": {
"category": "public.app-category.music",
"target": [
"zip"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"artifactName": "${name}Setup-${os}-v${version}-${arch}.${ext}"
},
"linux": {
"category": "AudioVideo",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
],
"executableName": "nighthawk"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
}
},
"devDependencies": {
"@types/classnames": "^2.2.7",
"@types/electron-is-dev": "^0.3.0",
"@types/electron-store": "^1.3.0",
"@types/lodash": "^4.14.116",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/react-modal": "^3.8.2",
"@types/react-transition-group": "^2.9.0",
"@types/react-virtualized": "^9.21.1",
"@types/recursive-readdir": "^2.2.0",
"css-loader": "^2.1.1",
"electron": "5.0.0",
"electron-builder": "^20.39.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"prettier": "1.14.3",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"ts-loader": "^5.3.3",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.4",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"@mdi/font": "^3.6.95",
"classnames": "^2.2.6",
"dexie": "^3.0.0-alpha.3",
"electron-is-dev": "^1.1.0",
"electron-log": "^3.0.5",
"electron-store": "^2.0.0",
"immer": "^1.6.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"music-metadata": "3.5.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hint": "^3.2.0",
"react-modal": "^3.8.1",
"react-tiny-popover": "^3.4.2",
"react-transition-group": "^4.0.0",
"react-virtualized": "^9.21.0",
"recursive-readdir": "^2.2.2"
}
}