forked from worklouder/input-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.76 KB
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
{
"name": "input",
"version": "0.15.3-Community",
"description": "Input App - Work Louder",
"author": "Work Louder",
"license": "none",
"private": true,
"scripts": {
"build": "electron-builder",
"postinstall": "electron-builder install-app-deps",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "SilkePilon",
"repo": "input-linux"
}
],
"appId": "com.worklouder.input",
"productName": "Input",
"directories": {
"buildResources": "assets",
"output": "release"
},
"files": [
"dist/**",
"dist-electron/**",
"node_modules/**"
],
"asarUnpack": [
"node_modules/electron-edge-js/**",
"node_modules/node-hid/**",
"node_modules/serialport/**",
"node_modules/@serialport/**",
"node_modules/bindings/**",
"node_modules/node-gyp-build/**"
],
"extraFiles": [
{
"from": "AppRun",
"to": "AppRun",
"filter": ["AppRun"]
},
{
"from": "electron-edge-bootstrap/lib-bootstrap",
"to": "resources/app.asar.unpacked/node_modules/electron-edge-js/lib/bootstrap/bin/Release",
"filter": ["**/*"]
},
{
"from": "electron-edge-bootstrap/lib-double",
"to": "resources/app.asar.unpacked/node_modules/electron-edge-js/src/double/Edge.js/bin/Release/net8.0",
"filter": ["**/*"]
}
],
"linux": {
"target": "AppImage",
"category": "Utility",
"icon": "dist/assets/appicon.png",
"executableName": "input"
},
"npmRebuild": false,
"buildDependenciesFromSource": false,
"extraMetadata": {
"main": "dist-electron/main/index.js"
}
}
}