-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.14 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
{
"name": "codeanalyzer-typescript",
"version": "0.4.1",
"description": "CLDK TypeScript analyzer — emits the canonical CLDK analysis.json (symbol table + resolver-based call graph) via ts-morph.",
"type": "module",
"module": "src/index.ts",
"bin": {
"cants": "dist/cants"
},
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build ./src/main.ts --compile --external @babel/preset-typescript --outfile dist/cants",
"gen:schema": "bun run src/index.ts --emit schema > schema.neo4j.json",
"gen:readme": "bun run scripts/update-readme.ts",
"test:container": "RUN_CONTAINER_TESTS=1 bun test test/neo4j-bolt.test.ts",
"typecheck": "tsc --noEmit"
},
"license": "Apache-2.0",
"dependencies": {
"commander": "^15.0.0",
"neo4j-driver": "^5.28.0",
"ts-morph": "^28.0.0"
},
"devDependencies": {
"@cs-au-dk/jelly": "0.13.0",
"@testcontainers/neo4j": "^12.0.3",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.1",
"testcontainers": "^12.0.3",
"typescript": "^6.0.3"
},
"patchedDependencies": {
"@cs-au-dk/jelly@0.13.0": "patches/@cs-au-dk%2Fjelly@0.13.0.patch"
}
}