-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
31 lines (31 loc) · 1.13 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
{
"name": "VictiScout",
"version": "4.1.0",
"description": "Scouting application for FIRST Robotics Competition, designed originally for Team 1418.",
"main": "js/main.js",
"scripts": {
"start": "electron .",
"package-mac": "electron-packager . --platform=darwin --icon=images/logo/logo.icns --arch=all --out dist/ --overwrite",
"package-linux": "electron-packager . --platform=linux --icon=images/logo/logo.png --arch=all --out dist/ --overwrite",
"package-win": "electron-packager . --platform=win32 --icon=images/logo/logo.ico --arch=all --out dist/ --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frc1418/VictiScout"
},
"author": "frc1418",
"license": "MIT",
"bugs": {
"url": "https://github.com/frc1418/VictiScout/issues"
},
"homepage": "https://github.com/frc1418/VictiScout#readme",
"devDependencies": {
"electron": "^22.1.0",
"electron-packager": "^17.1.1",
"os": "*"
},
"dependencies": {
"@abandonware/bleno": "git+https://github.com/BrandonWerbel/bleno.git",
"@abandonware/noble": "git+https://github.com/abandonware/noble.git"
}
}