-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.92 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
{
"name": "FireSong",
"version": "1.0.6",
"description": "FireSong is a YouTube music player powered by Electron.",
"main": "src/main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron ./"
},
"author": "David Csizmadia <firemax12b@gmail.com>, Milan Szekely <szekelymilan1125@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/FireMax12/FireSong.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FireMax12/FireSong/issues"
},
"homepage": "https://github.com/FireMax12/FireSong#readme",
"dependencies": {
"electron-updater": "^2.23.3",
"iohook": "0.1.15"
},
"devDependencies": {
"electron": "1.8.4",
"electron-builder": "^20.19.2"
},
"iohook": {
"targets": [
"node-59",
"electron-57"
],
"platforms": [
"win32",
"darwin",
"linux"
],
"arches": [
"x64",
"ia32"
]
},
"cmake-js": {
"runtime": "electron",
"runtimeVersion": "1.8.4"
},
"build": {
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"installerIcon": "static/icon.ico",
"uninstallerIcon": "static/icon.ico",
"license": "LICENSE"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"ia32",
"x64"
]
}
],
"icon": "static/icon.ico",
"publisherName": "David Csizmadia, Milan Szekely"
},
"appId": "com.firemax12.firesong",
"productName": "FireSong",
"copyright": "David Csizmadia 2017",
"publish": {
"provider": "github",
"repo": "FireSong",
"owner": "FireMax12",
"vPrefixedTagName": true,
"host": "github.com",
"protocol": "https"
}
}
}