-
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.94 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.94 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": "rally",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Rally — a decision-first supply chain control tower that resolves disruptions autonomously and escalates only what it should.",
"license": "MIT",
"author": "rslayer",
"repository": { "type": "git", "url": "https://github.com/rslayer/Rally.git" },
"homepage": "https://github.com/rslayer/Rally#readme",
"keywords": [
"supply-chain",
"control-tower",
"decision-engine",
"state-estimation",
"closed-loop-simulation",
"digital-twin",
"escalation",
"telematics",
"wms",
"typescript"
],
"engines": {
"node": ">=20"
},
"scripts": {
"start": "tsx apps/web/src/server.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"harness": "tsx apps/worker/src/main.ts",
"loop": "tsx packages/simulation/src/dev/loop-check.ts",
"web": "tsx apps/web/src/server.ts",
"fixtures": "tsx apps/adapter/src/generate-fixtures.ts",
"adapter": "tsx apps/adapter/src/main.ts",
"backtest": "tsx packages/simulation/src/dev/backtest-check.ts",
"live-sync": "tsx apps/adapter/src/live-sync.ts",
"mock-samsara": "tsx apps/adapter/src/mock-samsara.ts",
"incremental-sync": "tsx apps/adapter/src/incremental-sync.ts",
"orchestrate": "tsx apps/adapter/src/orchestrate.ts",
"live-detect": "tsx packages/simulation/src/dev/live-detect-check.ts",
"asn": "tsx packages/simulation/src/dev/asn-check.ts",
"control-tower": "tsx apps/adapter/src/control-tower.ts",
"control-tower-check": "tsx packages/simulation/src/dev/control-tower-check.ts",
"estimated-scorecard": "tsx packages/simulation/src/dev/estimated-scorecard-check.ts",
"ops-status": "tsx packages/simulation/src/dev/ops-status-check.ts"
},
"dependencies": {
"tsx": "^4.19.2"
},
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}