-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 3.58 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "ftc-maintenance-sripts",
"repository": "https://github.com/technototes/PowerPlay2022.git",
"author": "Kevin Frei <[email protected]>",
"license": "CC0-1.0",
"type": "module",
"scripts": {
"- // a-": "",
"- // a ": "These are all for fast building 'stuff':",
"- // a+": "",
"fast": "bun run gradle :Twenty403:assembleDebug :Sixteen750:assembleDebug",
"fast16": "bun run gradle :Sixteen750:assembleDebug",
"fast20": "bun run gradle :Twenty403:assembleDebug",
"fastlb": "bun run gradle :LearnBot:assembleDebug",
"- // b-": "",
"- // b ": "These are all for 'fullly' building 'stuff':",
"- // b+": "",
"build": "bun run gradle :Sixteen750:build :Twenty403:build",
"build16": "bun run gradle :Sixteen750:build",
"build20": "bun run gradle :Twenty403:build",
"buildlb": "bun run gradle :LearnBot:build",
"full": "bun run gradle build",
"- // c-": "",
"- // c ": "These scripts are for formatting code/scripts/markdown stuff:",
"- // c+": "",
"format": "tools format bun",
"- // d-": "",
"- // d ": "This will toggle using TechnoLib locally or from Maven",
"libflip": "bun run scripts/flip.ts lib",
"- // e-": "",
"- // e": "Disable/enable 'all' bots & subbuilds",
"botflip": "bun run scripts/flip.ts bot",
"- // ef-": "",
"- // ef": "This will toggle using MeepMeep locally or from Maven",
"meepflip": "bun run scripts/flip.ts meepmeep",
"- // f-": "",
"- // f ": "Stuff for connecting/disconnecting from the bot",
"- // f+": "",
"connect": "bun run adb connect 192.168.43.1:5555",
"disconnect": "bun run adb disconnect 192.168.43.1:5555",
"discall": "bun run adb disconnect",
"- // g-": "",
"- // g ": "Open the FTC Dashboard!",
"dash": "bun run open http://192.168.43.1:8080/dash",
"- // h-": "",
"- // h ": "platform-specific commands",
"- // h+": "",
"gradle": "./gradlew",
"adb": "bun run os adb",
"adb:win": "./scripts/adb.cmd",
"adb:mac": "~/Library/Android/sdk/platform-tools/adb",
"adb:lin": "~/Android/Sdk/platform-tools/adb",
"open": "bun run os open",
"open:win": "cmd /c start \"\"",
"open:mac": "open",
"open:lin": "xdg-open",
"- // i-": "",
"- // i ": "build stuff for the MeepMeep thing",
"- // i+": "",
"- // i.": " The '../' before the scripts line is because it's called from MeepMeepTesting directory",
"meep": "bun run scripts/preprocessor.ts",
"testmeep": "bun run scripts/preprocessor.ts ./MeepMeepTesting/build/test TEST_CLASS ./Sixteen750/src/main/java/org/firstinspires/ftc/sixteen750/AutoConstants.java ./Sixteen750/src/main/java/org/firstinspires/ftc/sixteen750/subsystems/DrivebaseSubsystem.java",
"- // j-": "",
"- // j ": "This is the script that presents the students with a workflow",
"work": "bun run scripts/workflow.ts",
"- // y-": "",
"- // y ": "TODO: This should be the thing that runs a different script per os, as run-script-os isn't bun-compatible",
"os": "bun run scripts/os.ts",
"- // z-": "",
"- // z ": "Build stuff for all the scripts (BUG: It's typechecking node_modules too!)",
"types": "tsc --noEmit -p tsconfig.json",
"- // We're using husky to auto-format code upon commit": "",
"prepare": "husky"
},
"dependencies": {
"@freik/containers": "^0.2.17",
"@freik/typechk": "^0.6.4",
"@freik/workspace": "^0.6.4",
"@types/bun": "^1.1.11",
"husky": "^9.1.6",
"java-parser": "^2.3.2",
"prettier": "^3.3.3",
"prettier-plugin-java": "^2.6.4",
"simple-git": "^3.27.0",
"typescript": "^5.6.3"
}
}