-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.24 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
{
"name": "bion",
"version": "0.1.0",
"private": true,
"description": "Bion — orchestration / control layer coordinator (relational state + FTS over owned rails).",
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"migrate": "tsx src/db/migrate.ts",
"daemon": "tsx src/daemon/daemon.ts",
"status": "tsx src/cli/status.ts",
"check-heartbeat": "tsx src/cli/checkHeartbeat.ts",
"cost": "tsx src/cli/cost.ts",
"task": "tsx src/cli/task.ts",
"mail": "tsx src/cli/mail.ts",
"mcp:desktop-mail": "tsx src/mcp/desktopMail.ts",
"auto-report": "tsx src/cli/autoReport.ts",
"test": "vitest run --reporter=default --reporter=json --outputFile=.bion-test-result.json",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"db:provision": "bash scripts/provision-db.sh",
"db:start": "bash scripts/pg-start.sh",
"db:stop": "bash scripts/pg-stop.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"dotenv": "^16.4.7",
"pg": "^8.13.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/pg": "^8.11.10",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}