-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "choreo",
"version": "2025.0.0-beta-6",
"description": "A graphical tool for planning time-optimized trajectories for autonomous mobile robots in the FIRST Robotics Competition.",
"homepage": "https://github.com/SleipnirGroup/Choreo",
"bugs": {
"url": "https://github.com/SleipnirGroup/Choreo/issues"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/SleipnirGroup/Choreo.git"
},
"private": true,
"type": "module",
"scripts": {
"fmtCpp": "wpiformat",
"fmtJava": "cd choreolib && bash ./gradlew spotlessApply",
"fmtJs": "prettier --write .",
"fmtRs": "cargo fmt",
"lintJs": "eslint --fix src",
"fmt": "pnpm run fmtCpp && pnpm run fmtJava && pnpm run fmtJs && pnpm run fmtRs && pnpm run lintJs",
"clean": "cargo clean && rm -rf dist && rm -rf node_modules",
"dev": "tauri dev",
"build": "tauri build -- --workspace",
"build-cli": "cargo build --release -p choreo-cli",
"tauri": "tauri"
},
"dependencies": {
"@emotion/styled": "^11.13.0",
"@fontsource-variable/roboto-mono": "^5.1.0",
"@fontsource/roboto": "^5.1.0",
"@hello-pangea/dnd": "^16.6.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"@tauri-apps/api": "^1.6.0",
"d3": "^7.9.0",
"hotkeys-js": "^3.13.7",
"mathjs": "^13.2.2",
"mobx": "^6.13.5",
"mobx-react": "^7.6.0",
"mobx-state-tree": "^6.0.1",
"mobx-utils": "^6.1.0",
"mst-middlewares": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-toastify": "^10.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@tauri-apps/cli": "^1.6.3",
"@types/d3": "^7.4.3",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.15.0",
"eslint-plugin-n": "^17.13.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"fs": "^0.0.2",
"glob": "^11.0.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11"
}
}