-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.37 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.37 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
{
"name": "knowledge-server",
"version": "3.8.6",
"description": "A consolidation-aware knowledge system that distills episodic memory from OpenCode sessions into retrievable knowledge, with embedding-based associative activation.",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"consolidate": "bun run src/cli.ts consolidate",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "bunx tsc --noEmit",
"build": "bun build --compile --minify src/index.ts --outfile dist/knowledge-server && bun build --compile --minify src/daemon/index.ts --outfile dist/knowledge-daemon",
"build:server": "bun build --compile --minify src/index.ts --outfile dist/knowledge-server",
"build:daemon": "bun build --compile --minify src/daemon/index.ts --outfile dist/knowledge-daemon",
"setup": "bash scripts/setup.sh",
"lint": "bunx biome check src/ tests/ plugin/",
"format": "bunx biome format --write src/ tests/ plugin/"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.0",
"@ai-sdk/google": "^3.0.0",
"@ai-sdk/openai-compatible": "^2.0.0",
"@modelcontextprotocol/sdk": "^1.12.0",
"ai": "^6.0.0",
"dotenv": "^17.3.1",
"hono": "^4.7.0",
"postgres": "^3.4.8",
"zod": "^3.25.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@opencode-ai/plugin": "^1.2.15",
"@types/bun": "latest"
}
}