-
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) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.98 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": "tudor",
"version": "0.1.0",
"private": true,
"description": "Tudor: pi-native multi-agent application with dashboard, memory, fleet, autonomy and vault.",
"type": "module",
"bin": {
"tudor": "./dist/src/cli/tudor.js",
"tudor-server": "./dist/src/server/index.js"
},
"scripts": {
"dev": "tsx src/server/index.ts",
"start": "tsx src/server/index.ts",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit",
"production:check": "bash scripts/production-readiness.sh",
"production:backup": "bash scripts/backup-tudor.sh",
"production:restore:dry-run": "bash scripts/restore-tudor.sh --dry-run",
"cli:health": "tsx src/cli/tudor.ts health",
"cli:summary": "tsx src/cli/tudor.ts summary",
"test": "tsx test/web-shell.test.ts && tsx test/agents-menu.test.ts && tsx test/phase99-runtime-launch.test.ts && tsx test/workflow-retry.test.ts && tsx test/workflow-planner.test.ts && tsx test/workflow-execution.test.ts && tsx test/workflow-recovery.test.ts && tsx test/background-workflow-runner.test.ts && tsx test/delivery-contracts.test.ts && tsx test/context-contracts.test.ts && tsx test/workflow-compaction.test.ts && tsx test/state-contracts.test.ts && tsx test/dream-engine-v2.test.ts && tsx test/dream-handoff-context.test.ts && tsx test/dream-handoff-delivery.test.ts && tsx test/dream-handoff-reconciliation.test.ts && tsx test/dream-handoff-review.test.ts && tsx test/dream-handoff-execution-loop.test.ts && tsx test/dream-handoff-review-queue.test.ts && tsx test/integrations-mvp.test.ts && tsx test/vault-runtime-injection.test.ts && tsx test/fleet-health-replay.test.ts && tsx test/replay-hardening-sweep.test.ts && tsx test/production-readiness.test.ts && tsx test/tudor-cli.test.ts",
"check": "npm run typecheck"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/node": "22.15.29",
"tsx": "4.19.4",
"typescript": "5.8.3"
},
"dependencies": {
"@sqlite.org/sqlite-wasm": "3.53.0-build1"
}
}