-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.06 KB
/
package.json
File metadata and controls
90 lines (90 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@backloghq/agentdb",
"version": "2.2.1",
"description": "AI-first embedded database for LLM agents. Library-first architecture with framework-agnostic tool definitions and MCP adapter.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tools": {
"types": "./dist/tools/index.d.ts",
"import": "./dist/tools/index.js"
},
"./mcp": {
"types": "./dist/mcp/index.d.ts",
"import": "./dist/mcp/index.js"
}
},
"bin": {
"agentdb": "dist/mcp/cli.js"
},
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"bench:leak": "node --expose-gc scripts/bench-leak.mjs",
"prepublishOnly": "npm run build"
},
"keywords": [
"agent",
"database",
"embedded",
"llm",
"mcp",
"document-store",
"ai"
],
"author": "mbocevski",
"license": "MIT",
"engines": {
"node": ">=22"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"MIGRATION-2.0.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/backloghq/agentdb.git"
},
"sideEffects": false,
"dependencies": {
"@backloghq/opslog": "^0.8.1",
"@backloghq/termlog": "^0.1.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.2.1",
"hyparquet": "^1.25.6",
"hyparquet-writer": "^0.13.0",
"jose": "^6.2.2",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@backloghq/opslog-s3": "^0.4.1"
},
"peerDependencies": {
"@backloghq/termlog-s3": "^0.1.0"
},
"peerDependenciesMeta": {
"@backloghq/termlog-s3": {
"optional": true
}
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1028.0",
"@backloghq/termlog-s3": "^0.1.0",
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
}
}