-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
43 lines (43 loc) · 1005 Bytes
/
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
{
"name": "open-joystick-display",
"version": "1.0.0-Beta",
"description": "An open source Joystick display for Twitch, YouTube, etc. ",
"main": "src/js/bootstrap.js",
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder",
"start": "electron ."
},
"build": {
"appId": "open-joystick-display",
"productName": "Open Joystick Display",
"files": [
"src/**/*",
"node_modules/**/*",
"package.json"
],
"linux": {
"icon":"./src/icons/icon.png",
"target": "dir",
"category": "Multimedia"
},
"win": {
"icon": "./src/icons/icon.ico",
"target": "zip"
}
},
"dependencies": {
"clone": "^2.1.2",
"electron-store": "^2.0.0",
"jquery": "^3.3.1",
"original-fs": "^1.0.0",
"sanitize-html": "^1.20.0"
},
"devDependencies": {
"clone": "^2.1.2",
"electron": "^4.0.0",
"electron-builder": "^20.38.4",
"electron-store": "^2.0.0",
"jquery": "^3.3.1"
}
}