-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 2.05 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
{
"author": "quinton-ashley",
"bin": {
"cemu-no-gyro": "./app.js"
},
"bugs": {
"url": "https://github.com/quinton-ashley/cemu-no-gyro/issues"
},
"build": {
"appId": "com.qashto.cemu-no-gyro",
"copyright": "Copyright © 2018-2023 Quinton Ashley",
"electronVersion": "13.1.7",
"mac": {
"category": "public.app-category.game",
"target": [
{
"target": "7z",
"arch": [
"arm64"
]
}
]
},
"linux": {
"category": "Utility",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"publish": [
"github"
]
}
},
"dependencies": {
"@popperjs/core": "^2.9.3",
"await-spawn": "^4.0.2",
"bootstrap": "^5.1.0",
"contro": "^2.2.0",
"contro-ui": "^3.3.17",
"crc": "^3.5.0",
"delay": "^5.0.0",
"electron-pug": "^2.0.0",
"express": "^4.16.4",
"fs-extra": "^10.0.0",
"jquery": "^3.6.0",
"long": "^4.0.0",
"markdown-it": "^12.2.0",
"minimist": "^1.2.5",
"mousetrap": "^1.6.5",
"open": "^8.2.1",
"popper.js": "^1.16.1",
"tether": "^2.0.0",
"ws": "^8.1.0"
},
"description": "Maps controller sticks to motion controls for Cemu.",
"devDependencies": {
"electron": "^24.4.0",
"electron-builder": "^23.6.0"
},
"entry point": "app.js",
"homepage": "https://github.com/quinton-ashley/cemu-no-gyro#readme",
"keywords": [
"gyro",
"cemuhook",
"cemu"
],
"license": "MIT",
"main": "app.js",
"name": "cemu-no-gyro",
"repository": {
"type": "git",
"url": "git+https://github.com/quinton-ashley/cemu-no-gyro.git"
},
"scripts": {
"start": "electron . --dev",
"test": "echo \"Error: no test specified\" && exit 1",
"dist": "electron-builder -l | electron-builder -m | electron-builder -w",
"dist-l": "electron-builder -l",
"dist-m": "electron-builder -m",
"dist-w": "electron-builder -w",
"v": "npm version patch --force",
"version": "git add -A",
"postversion": "git push",
"V": "npm version minor --force"
},
"version": "1.1.6"
}