-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 926 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
30
{
"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",
"dependencies": {
"chart.js": "^2.9.3",
"wpilib-nt-client": "^1.7.1"
},
"devDependencies": {
"electron": "^7.1.8",
"electron-packager": "^14.1.1"
}
}