This repository has been archived by the owner on Apr 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.69 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
{
"name": "robodevil-dashboard-2019",
"version": "1.0.0",
"description": "Robot control dashboard boilerplate for FRC.",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"postinstall": "install-app-deps",
"pack": "build --dir",
"dist": "build",
"test": "echo No tests to run."
},
"repository": {
"type": "git",
"url": "git+https://github.com/firecrafty/RoboDevilDashboard2019"
},
"homepage": "https://github.com/firecrafty/RoboDevilDashboard2019",
"author": "Ryan Blue",
"license": "MIT",
"bugs": {
"url": "https://github.com/firecrafty/RoboDevilDashboard2019/issues"
},
"devDependencies": {
"electron": "^4.0.1",
"electron-builder": "^20.38.4",
"electron-packager": "^13.0.1"
},
"dependencies": {
"wpilib-nt-client": "^1.7.1"
},
"build": {
"appId": "com.pikerobodevils.2019dashboard",
"productName": "RoboDevil Dashboard",
"copyright": "Copyright © 2019 Pike RoboDevils",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "images/logo.png"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE",
"deleteAppDataOnUninstall": true,
"artifactName": "${name}-v${version}-${channel}-${os}-${arch}-setup.${ext}"
},
"portable": {
"artifactName": "${name}-v${version}-${channel}-${os}-${arch}-portable.${ext}"
},
"files": [
"!.env"
]
}
}