-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.57 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
{
"name": "spacemouse-osc",
"author": {
"name": "dewiweb",
"email": "[email protected]"
},
"version": "2.2.2",
"main": "src/main.js",
"license": "MIT",
"devDependencies": {
"electron": "^29.1.0",
"electron-builder": "^24.13.3",
"standard-version": "^9.5.0"
},
"scripts": {
"start": "electron .",
"package": "electron-builder build --win --x64",
"publish": "electron-builder build --publish always",
"release": "standard-version",
"prerelease": "standard-version --prerelease"
},
"dependencies": {
"electron-context-menu": "^3.6.1",
"electron-log": "^4.4.8",
"electron-preferences": "^2.8.2",
"lodash": "^4.17.21",
"node-hid": "^3.0.0",
"osc": "^2.4.4"
},
"build": {
"appId": "mouse3d-osc",
"directories": {
"buildResources": "resources",
"output": "release-builds"
},
"publish": [
{
"provider": "github"
}
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "./src/assets/icon2.ico"
},
"nsis": {
"oneClick": false,
"installerIcon": "./src/assets/icon2.ico",
"uninstallerIcon": "./src/assets/icon2.ico",
"license": "./LICENSE.md",
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64",
"armv7l"
]
}
]
},
"mac": {
"target": "default"
}
}
}