-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.06 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "borg",
"version": "0.1.0",
"description": "Cognitive memory architecture for autonomous AI beings",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./suppression-outcome": {
"import": "./dist/suppression-outcome.js",
"types": "./dist/suppression-outcome.d.ts"
}
},
"bin": {
"borg": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"ARCHITECTURE.md"
],
"engines": {
"node": ">=22.18.0"
},
"scripts": {
"start": "tsx scripts/memory-sidecar.ts",
"build": "tsup",
"assess": "tsx assessor/cli.ts",
"chat": "tsx scripts/chat.ts",
"daemon": "tsx scripts/daemon.ts",
"debug": "tsx scripts/debug.ts",
"dev": "tsx watch src/cli/index.ts",
"dev:server": "npm --prefix demo/server run dev",
"dev:web": "npm --prefix demo/web run dev",
"eval": "tsx eval/runner.ts",
"simulate": "tsx simulator/cli.ts",
"build:server": "npm --prefix demo/server run build",
"build:web": "npm --prefix demo/web run build",
"test": "vitest run",
"test:dist-smoke": "npm run build && NODE_OPTIONS= node --import tsx scripts/dist-smoke.ts",
"heuristics:guard": "tsx scripts/heuristics-guard.ts",
"test:watch": "vitest",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.eval.json && tsc --noEmit -p tsconfig.assessor.json && tsc --noEmit -p tsconfig.simulator.json && tsc --noEmit -p tsconfig.test.json",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@lancedb/lancedb": "^0.27.2",
"apache-arrow": "^18.1.0",
"cac": "^7.0.0",
"nanoid": "^5.1.9",
"openai": "^6.34.0",
"tsx": "^4.21.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"fallow": "^2.88.3",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.7.3",
"vitest": "^4.1.4"
}
}