forked from Gkiokan/ps4-remote-pkg-sender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.89 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
{
"private": true,
"version": "2.7.2",
"name": "PS4RemotePKGSenderV2",
"productName": "PS4 Remote PKG Sender V2",
"author": "Gkiokan <[email protected]>",
"description": "Manage and send PKG files to your ps4",
"scripts": {
"build": "electron-webpack && electron-builder --dir",
"build:mac": "electron-webpack && electron-builder --mac",
"build:win": "electron-webpack && electron-builder --win",
"build:linux": "electron-webpack && electron-builder --linux",
"build:all": "electron-webpack && electron-builder -mwl",
"dist": "electron-webpack && electron-builder --dir",
"publish": "electron-builder --mac --linux --win --publish onTag",
"webpack": "electron-webpack",
"watch": "electron-webpack dev"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"electron": "^3.1.13",
"electron-builder": "^22.14.5",
"electron-devtools-installer": "^3.2.0",
"electron-packager": "^12.2.0",
"electron-webpack": "^2.8.2",
"electron-webpack-vue": "^2.4.0",
"element-ui": "^2.15.6",
"json5": "^2.2.0",
"lodash": "^4.17.21",
"node-sass": "4.14.1",
"sass-loader": "10.1.1",
"vue": "^2.6.14",
"vue-devtools": "^5.1.4",
"vue-i18n": "^8.26.7",
"vue-router": "^3.4.5",
"vuex": "^3.5.1",
"vuex-electron": "git+https://github.com/michaeljpeake/vuex-electron.git",
"vuex-pathify": "^1.4.1",
"vuex-router-sync": "^5.0.0",
"webpack": "~4.42.1"
},
"dependencies": {
"axios": "^0.24.0",
"debounce": "^1.2.1",
"express": "^4.17.1",
"os": "^0.1.2",
"source-map-support": "^0.5.16",
"uaup-js": "0.0.22",
"webtorrent": "^0.102.4"
},
"build": {
"appId": "gkiokan.net.ps4remotepkgsenderv2",
"asar": true,
"directories": {
"output": "release"
},
"win": {
"target": [
{
"target": "zip",
"arch": [ "x64", "ia32" ]
},
{
"target": "portable",
"arch": [ "x64", "ia32" ]
}
]
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [ "x64", "ia32", "armv7l" ]
},
{
"target": "snap"
},
{
"target": "deb"
}
]
},
"portable": {
"artifactName": "${productName}.exe",
"unpackDirName": "PS4RemotePKGSenderV2"
},
"dmg": {
"title": "${productName} - ${version}",
"background": "build/background.png",
"contents": [
{
"x": "20",
"y": "100"
},
{
"x": "160",
"y": "100",
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": "540",
"height": "380"
}
},
"publish": {
"provider": "github",
"owner": "gkiokan",
"repo": "ps4-remote-pkg-sender",
"vPrefixedTagName": true
}
}
}