-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.1 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
91
92
93
{
"name": "atlasmemory",
"version": "1.0.15",
"description": "Proof-backed, drift-resistant AI memory for your codebase",
"type": "module",
"bin": {
"atlasmemory": "dist/atlasmemory.js"
},
"main": "dist/atlasmemory.js",
"exports": {
".": {
"import": "./dist/atlasmemory.js"
}
},
"files": [
"dist/atlasmemory.js",
"dist/atlasmemory.js.map",
"README.md",
"LICENSE"
],
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "npm --workspaces run build",
"build:bundle": "node build.mjs",
"build:all": "npm run build && npm run build:bundle",
"prepublishOnly": "npm run build:all",
"test": "vitest run",
"eval": "node apps/eval/dist/src/index.js run-all",
"eval:synth100": "node apps/eval/dist/src/index.js run --repo apps/eval/synth-100 --out apps/eval/reports --desc \"synth-100\"",
"eval:synth500": "node apps/eval/dist/src/index.js run --repo apps/eval/synth-500 --out apps/eval/reports --desc \"synth-500\"",
"eval:real": "node apps/eval/dist/src/index.js run --repo . --out apps/eval/reports --desc \"real-repo-smoke\" --smoke --skipIndex --incremental --db-path .atlas/atlas.db",
"eval:real:heal": "node apps/eval/dist/src/index.js run --repo . --out apps/eval/reports --desc \"real-repo-smoke-heal\" --smoke --skipIndex --incremental --db-path .atlas/atlas.db --autoHealOnLowCoverage --allowFullIndexFallback",
"selftest:agent": "node scripts/agent-selftest.mjs"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^0.6.0",
"better-sqlite3": "^9.0.0",
"commander": "^11.0.0",
"tree-sitter": "^0.20.6",
"tree-sitter-c": "^0.20.7",
"tree-sitter-c-sharp": "^0.20.0",
"tree-sitter-cpp": "^0.20.5",
"tree-sitter-go": "^0.20.0",
"tree-sitter-java": "^0.20.2",
"tree-sitter-javascript": "^0.20.1",
"tree-sitter-php": "^0.20.0",
"tree-sitter-python": "^0.20.4",
"tree-sitter-ruby": "^0.20.1",
"tree-sitter-rust": "^0.20.4",
"tree-sitter-typescript": "^0.20.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20.19.33",
"esbuild": "^0.27.3",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"ai",
"memory",
"mcp",
"context",
"code-intelligence",
"tree-sitter",
"sqlite",
"proof",
"drift-detection",
"model-context-protocol",
"llm",
"copilot",
"claude"
],
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Bpolat0/atlasmemory"
},
"author": "Bpolat0",
"homepage": "https://github.com/Bpolat0/atlasmemory#readme",
"bugs": {
"url": "https://github.com/Bpolat0/atlasmemory/issues"
}
}