-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 5.85 KB
/
package.json
File metadata and controls
148 lines (148 loc) · 5.85 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "sdl-mcp",
"version": "0.10.0",
"description": "Symbol Delta Ledger MCP Server - Cards-first code context for polyglot repositories",
"type": "module",
"main": "dist/main.js",
"bin": {
"sdl-mcp": "dist/cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlitterKill/sdl-mcp.git"
},
"bugs": {
"url": "https://github.com/GlitterKill/sdl-mcp/issues"
},
"homepage": "https://github.com/GlitterKill/sdl-mcp#readme",
"files": [
"dist",
"config",
"models",
"templates/*.json",
"templates/*.template",
"scripts/postinstall-prune.mjs",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/postinstall-prune.mjs",
"clean:dist": "node scripts/clean-dist.mjs",
"build": "tsc -p tsconfig.build.json",
"build:scripts": "tsc -p tsconfig.scripts.json && node scripts/fix-imports.ts",
"build:runtime": "npm run clean:dist && npm run build",
"build:all": "npm run clean:dist && npm run build && npm run build:scripts",
"watch": "tsc -p tsconfig.build.json --watch",
"dev": "node src/main.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"format": "prettier --write \"src/**/*.ts\"",
"test": "node scripts/run-tests.mjs",
"test:harness": "npm run test:adapters",
"test:adapters": "npm run build && npx tsc --rootDir tests/harness --outDir dist/tests/harness --module nodenext tests/harness/adapter-runner.ts && node dist/tests/harness/adapter-runner.js",
"test:golden": "npm run build && node scripts/golden/update-goldens.ts validate",
"golden:update": "npm run build && node scripts/golden/update-goldens.ts generate",
"benchmark:ci": "node dist/cli/index.js benchmark:ci",
"migrate": "npm run build:scripts && node dist/scripts/migrate.js",
"index": "npm run build:scripts && node dist/scripts/index-repo.js",
"index-repo": "npm run build:scripts && node dist/scripts/index-repo.js",
"dump-symbol": "npm run build:scripts && node dist/scripts/dump-symbol.js",
"benchmark": "node scripts/benchmark.ts",
"benchmark:real": "node scripts/real-world-benchmark.ts",
"benchmark:matrix": "node scripts/real-world-benchmark-matrix.ts",
"benchmark:claims": "node scripts/check-benchmark-claims.ts",
"benchmark:sweep": "node scripts/budget-sensitivity-sweep.ts",
"benchmark:record-trace": "node scripts/record-trace.ts",
"benchmark:setup-external": "node scripts/setup-external-benchmark-repos.ts",
"benchmark:v067": "node scripts/benchmark/v067-baseline.ts",
"benchmark:v067:check": "node scripts/benchmark/v067-baseline.ts --check devdocs/benchmarks/v067-baseline.json",
"benchmark:v067:save": "node scripts/benchmark/v067-baseline.ts --out devdocs/benchmarks/v067-baseline.json",
"package:exe": "node scripts/build-exe.js",
"prepack": "npm run build:runtime",
"build:native": "napi build --release --cargo-cwd native --config native/package.json native",
"build:native:debug": "napi build --cargo-cwd native --config native/package.json native",
"native:artifacts": "napi artifacts --config native/package.json --npm-dir native/npm",
"native:version": "node scripts/sync-native-version.mjs",
"prepare-release": "node scripts/prepare-release.mjs",
"inspector": "npx @modelcontextprotocol/inspector node dist/main.js",
"test:native-parity": "node tests/native/parity-test.ts",
"check:config-sync": "node scripts/check-config-sync.ts",
"prepublishOnly": "npm run build:all && npm run lint && npm run typecheck",
"spike:ladybug": "node scripts/ladybug-spike.ts",
"test:stress": "node --max-old-space-size=4096 tests/stress/run-stress.ts",
"test:mutation": "stryker run stryker.conf.cjs",
"test:coverage": "node --experimental-test-coverage scripts/run-tests.mjs",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"code-indexing",
"symbol-ledger",
"typescript",
"javascript",
"code-context",
"ast",
"code-analysis",
"developer-tools"
],
"author": "",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"@opentelemetry/sdk-trace-node": "^2.6.0",
"tree-sitter": "0.25.0",
"tree-sitter-bash": "0.25.1",
"tree-sitter-c": "0.24.1",
"tree-sitter-c-sharp": "0.23.1",
"tree-sitter-cpp": "0.23.4",
"tree-sitter-go": "0.25.0",
"tree-sitter-java": "0.23.5",
"tree-sitter-kotlin": "0.3.8",
"tree-sitter-php": "0.24.2",
"tree-sitter-python": "0.25.0",
"tree-sitter-rust": "0.24.0",
"tree-sitter-typescript": "0.23.2",
"typescript": "^5.9.3",
"zod": "^4.3.6"
},
"overrides": {
"@hono/node-server": "1.19.11",
"flatted": "3.4.2",
"hono": "4.12.7",
"tar": "7.5.12"
},
"optionalDependencies": {
"chokidar": "^5.0.0",
"kuzu": "npm:@ladybugdb/core@0.15.2",
"onnxruntime-node": "^1.24.3",
"sdl-mcp-native": "0.9.2",
"tokenizers": "0.13.4-rc2",
"tokenizers-darwin-arm64": "0.13.4-rc2",
"tokenizers-darwin-x64": "0.13.4-rc2",
"tokenizers-linux-arm64-gnu": "0.13.4-rc2",
"tokenizers-linux-arm64-musl": "0.13.4-rc2",
"tokenizers-linux-x64-gnu": "0.13.4-rc2",
"tokenizers-linux-x64-musl": "0.13.4-rc2",
"tokenizers-win32-arm64-msvc": "0.13.4-rc2",
"tokenizers-win32-ia32-msvc": "0.13.4-rc2",
"tokenizers-win32-x64-msvc": "0.13.4-rc2"
},
"devDependencies": {
"@napi-rs/cli": "^2.18.0",
"@opentelemetry/sdk-trace-web": "^2.6.0",
"@stryker-mutator/core": "^9.6.0",
"@types/node": "^24.0.0",
"eslint": "^10.1.0",
"eslint-plugin-import-x": "^4.16.2",
"fast-check": "^4.6.0",
"prettier": "^3.0.0",
"ts-morph": "^27.0.2",
"typescript-eslint": "^8.57.1"
},
"engines": {
"node": ">=24.0.0"
}
}