forked from CelestinaDragoni/open-joystick-display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "open-joystick-display",
"version": "2.8.0",
"description": "A powerful and easy to use streamer-ready overlay for your joystick or gamepad. Completely free and open source.",
"author": "KernelZechs, Open Joystick Display <[email protected]>",
"main": "app/js/electron.js",
"scripts": {
"build": "gulp build && gulp rebuild-electron && electron-builder",
"start": "electron ."
},
"build": {
"appId": "open-joystick-display",
"artifactName": "open-joystick-display-${version}.${ext}",
"productName": "Open Joystick Display",
"files": [
"app/**/*",
"node_modules/**/*",
"package.json"
],
"linux": {
"icon": "./app/icons/icon.png",
"target": [
{"target":"tar.gz"},
{"target":"deb"},
{"target":"AppImage"}
],
"category": "Multimedia"
},
"win": {
"icon": "./app/icons/icon.ico",
"target": [
{"target":"zip"},
{"target":"nsis"}
]
},
"mac": {
"icon": "./app/icons/icon.icns",
"target": "zip"
}
},
"dependencies": {
"clone": "^2.1.2",
"electron-store": "^4.0.0",
"jquery": "^3.4.1",
"json-socket": "^0.3.0",
"lodash": "^4.17.14",
"original-fs": "^1.0.0",
"promise": "^8.0.3",
"sanitize-html": "^1.20.1",
"serialport": "^7.1.5",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"electron": "4.0.3",
"electron-builder": "^20.38.5",
"electron-rebuild": "^1.8.4",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.2.0",
"gulp-connect": "^5.7.0",
"gulp-less": "^4.0.1",
"gulp-minify": "^3.1.0",
"less": "^3.9.0",
"node-watch": "^0.6.2",
"stream-combiner2": "^1.1.1"
}
}