forked from FRCDashboard/FRCDashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 901 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
{
"name": "FRCDashboard",
"version": "2.1.0",
"description": "Robot control dashboard boilerplate for FRC.",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"package-mac": "electron-packager . --platform=darwin --icon=images/icon.icns --out dist/",
"package-linux": "electron-packager . --platform=linux --icon=images/icon.png --out dist/",
"package-win": "electron-packager . --platform=win32 --icon=images/icon.ico --out dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FRCDashboard/FRCDashboard"
},
"author": "Erik Boesen",
"license": "MIT",
"bugs": {
"url": "https://github.com/FRCDashboard/FRCDashboard/issues"
},
"homepage": "http://frcdashboard.github.io",
"devDependencies": {
"electron": "^1.7.12",
"electron-packager": "^10.1.1"
},
"dependencies": {
"wpilib-nt-client": "^1.7.1"
}
}