-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 2 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 2 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
{
"name": "ignitionrl",
"private": true,
"version": "0.0.0",
"description": "Desktop-first RL studio for fast iteration on React Three Fiber agent environments.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:studio": "bun run --cwd apps/studio dev",
"dev:studio:desktop": "bun run --cwd apps/studio dev:desktop",
"build": "bun run build:packages && bun run build:studio",
"build:packages": "bun run --cwd packages/core build && bun run --cwd packages/learning build && bun run --cwd packages/sdk build && bun run --cwd packages/r3f build && bun run --cwd packages/examples build && bun run --cwd packages/cli build",
"build:studio": "bun run --cwd apps/studio build",
"build:studio:desktop": "bun run --cwd apps/studio build:desktop",
"init:gridworld": "bun run --cwd packages/cli start init grid-world",
"init:target2d": "bun run --cwd packages/cli start init target-2d",
"init:drone": "bun run --cwd packages/cli start init drone-target",
"demo:gridworld": "bun run --cwd packages/cli start demo grid-world --seed 42",
"demo:target2d": "bun run --cwd packages/cli start demo target-2d --seed 42",
"demo:drone": "bun run --cwd packages/cli start demo drone-target --seed 42",
"benchmark:engine": "bun scripts/benchmark-engine.mjs",
"smoke:ci": "bun scripts/ci-smoke.mjs",
"ci": "bun run typecheck && bun test && bun run build && bun run test:coverage && bun run smoke:ci && bun run test:rust",
"test": "bun run build:packages && bun test",
"test:rust": "cargo test --workspace",
"test:coverage": "bun run --cwd packages/core test:coverage",
"typecheck": "bun run --cwd packages/core typecheck && bun run --cwd packages/learning typecheck && bun run --cwd packages/sdk typecheck && bun run --cwd packages/r3f typecheck && bun run --cwd packages/examples typecheck && bun run --cwd packages/cli typecheck && bun run --cwd apps/studio typecheck",
"lint": "echo TODO"
},
"devDependencies": {
"typescript": "^5.8.3"
}
}