-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "engramgraph",
"version": "0.12.0-rc.3",
"description": "Open-source code + knowledge graph memory engine (SAGE + CodeGraph). AsiaOstrich is only a reference consumer.",
"license": "MIT",
"author": "AsiaOstrich",
"repository": {
"type": "git",
"url": "git+https://github.com/AsiaOstrich/EngramGraph.git"
},
"homepage": "https://github.com/AsiaOstrich/EngramGraph#readme",
"bugs": {
"url": "https://github.com/AsiaOstrich/EngramGraph/issues"
},
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"egr": "dist/cli/index.js",
"engramgraph": "dist/cli/index.js",
"egr-mcp": "dist/mcp/stdio.js"
},
"files": [
"dist",
"language-support.js",
"preinstall.js",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"preinstall": "node preinstall.js",
"build": "tsup",
"prepare": "tsup && husky",
"health": "node scripts/health-check.mjs",
"mcp": "node dist/mcp/stdio.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"audit:ship": "node scripts/check-shipped-advisories.mjs",
"dev": "node --experimental-strip-types --watch src/api/dev-server.ts",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"engram",
"engramgraph",
"code-graph",
"knowledge-graph",
"code-memory",
"ryugraph",
"graph-memory",
"sage",
"tree-sitter"
],
"dependencies": {
"@bufbuild/protobuf": "2.12.1",
"@modelcontextprotocol/sdk": "^1.30.0",
"@tree-sitter-grammars/tree-sitter-kotlin": "1.1.0",
"hono": "^4.13.1",
"ryugraph": "25.9.1",
"tree-sitter": "0.22.4",
"tree-sitter-c-sharp": "0.23.1",
"tree-sitter-cpp": "0.23.4",
"tree-sitter-go": "0.23.4",
"tree-sitter-java": "0.23.5",
"tree-sitter-javascript": "0.23.1",
"tree-sitter-php": "0.23.12",
"tree-sitter-python": "0.23.4",
"tree-sitter-ruby": "0.23.1",
"tree-sitter-rust": "0.23.1",
"tree-sitter-typescript": "0.23.2"
},
"optionalDependencies": {
"@vokturz/tree-sitter-dart": "1.0.0"
},
"overrides": {
"cmake-js": "^8.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@vitest/coverage-v8": "^4.1.10",
"husky": "^9.1.7",
"tsup": "^8.0.0",
"typescript": "^5.6.0",
"vitest": "^4.0.0"
},
"allowScripts": {
"ryugraph@25.9.1": true,
"tree-sitter@0.22.4": true,
"tree-sitter-c-sharp@0.23.1": true,
"tree-sitter-cpp@0.23.4": true,
"tree-sitter-go@0.23.4": true,
"tree-sitter-java@0.23.5": true,
"tree-sitter-javascript@0.23.1": true,
"tree-sitter-python@0.23.4": true,
"tree-sitter-rust@0.23.1": true,
"tree-sitter-typescript@0.23.2": true,
"@tree-sitter-grammars/tree-sitter-kotlin@1.1.0": true,
"tree-sitter-ruby@0.23.1": true,
"tree-sitter-php@0.23.12": true,
"@vokturz/tree-sitter-dart@1.0.0": true,
"esbuild@0.27.7": true
}
}