-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.61 KB
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
{
"name": "forge-rde",
"version": "0.1.0",
"description": "Forge RDE - Multimodal Robotics Development Environment",
"main": "src/main.js",
"scripts": {
"build:css": "npx @tailwindcss/cli -i ./src/renderer/styles.src.css -o ./src/renderer/styles.css",
"dev": "electron .",
"dev:css": "npx @tailwindcss/cli -i ./src/renderer/styles.src.css -o ./src/renderer/styles.css --watch",
"dev:bench": "vite",
"build:bench": "tsc -b && vite build",
"dev:remote": "FORGE_REMOTE_URL=https://solusforge.com electron .",
"start": "electron .",
"server": "node src/server/index.mjs",
"test": "echo \"No tests configured yet\""
},
"keywords": [
"electron",
"robotics",
"forge-rde"
],
"author": "",
"license": "MIT",
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@supabase/supabase-js": "^2.57.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-session": "^1.18.2",
"jszip": "^3.10.1",
"mujoco-react": "^8.2.1",
"node-pty": "^1.1.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"session-file-store": "^1.5.0",
"three": "^0.183.2",
"uuid": "^13.0.0",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.27",
"electron": "^38.0.0",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "~5.9.3",
"vite": "^7.3.1"
}
}