-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.11 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
{
"name": "graphctx",
"version": "0.2.0",
"description": "A local-first memory control plane for coding agents — lifecycle push for Claude Code, refreshed grounding and MCP recall for other clients.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/coder-company/graphCTX.git"
},
"bin": {
"graphctx": "dist/cli.js"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": ["dist", "README.md", "DEMO.md", "LICENSE"],
"scripts": {
"gen": "node scripts/gen-migrations.mjs",
"copy-assets": "node scripts/copy-assets.mjs",
"build": "node scripts/gen-migrations.mjs && tsc -p tsconfig.json && npm run copy-assets",
"build:binary": "node scripts/gen-migrations.mjs && node scripts/build-binary.mjs",
"pack:smoke": "node scripts/pack-smoke.mjs",
"prepack": "npm run build",
"dev": "tsx src/cli.ts",
"graphctx": "tsx src/cli.ts",
"demo": "tsx src/cli.ts demo",
"bench": "tsx src/cli.ts bench",
"eval": "tsx src/cli.ts eval run",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src test",
"lint:fix": "biome check --write src test",
"format": "biome format --write src test"
},
"keywords": [
"mcp",
"ai-agents",
"memory",
"knowledge-graph",
"temporal",
"coding-agents",
"claude-code",
"context"
],
"author": "coder-company",
"engines": {
"node": ">=20"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"commander": "^13.1.0",
"gpt-tokenizer": "^2.8.1",
"simple-git": "^3.27.0",
"sqlite-vec": "^0.1.9",
"ulid": "^2.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.9"
},
"allowScripts": {
"@biomejs/biome@1.9.4": true,
"better-sqlite3@11.10.0": true,
"esbuild@0.28.1": true,
"esbuild@0.21.5": true
}
}