-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
202 lines (202 loc) · 10.4 KB
/
Copy pathpackage.json
File metadata and controls
202 lines (202 loc) · 10.4 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
{
"name": "sdl-mcp",
"version": "0.13.7",
"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",
"templates/*.json",
"templates/*.md",
"templates/*.template",
"templates/sdl-mcp-agent-workflow",
"scripts/postinstall.mjs",
"scripts/postinstall-watchman.mjs",
"scripts/postinstall-tree-sitter.mjs",
"scripts/postinstall-prune.mjs",
"scripts/postinstall-models.mjs",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/postinstall.mjs",
"clean:dist": "node scripts/clean-dist.mjs",
"build": "tsc -p tsconfig.build.json && tsc -p tsconfig.ui.json && node scripts/copy-ui-assets.mjs && node scripts/copy-vendor-assets.mjs",
"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 && npm run lint:tests",
"lint:tests": "eslint \"tests/**/*.test.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"test": "node scripts/run-tests.mjs",
"test:unit": "node scripts/run-tests.mjs --group=unit",
"test:integration": "node scripts/run-tests.mjs --group=integration",
"test:property": "node scripts/run-tests.mjs --group=property",
"test:native": "npm run build:native && npm run build:all && npm run test:native-parity && npm run test:layout-parity && npm run test:native-index-smoke && npm run test:native-live-index && npm run test:parity",
"test:benchmark": "node scripts/run-tests.mjs --group=benchmark",
"test:root": "node scripts/run-tests.mjs --group=root",
"test:golden-files": "node scripts/run-tests.mjs --group=golden",
"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",
"benchmark:seed-resolution": "npm run build && node --experimental-strip-types scripts/evaluate-seed-resolution.ts",
"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",
"bench:ppr": "node scripts/bench-ppr-weight.ts",
"bench:hnsw-efc": "npm run build && node scripts/benchmark-hnsw-efc.ts",
"bench:delta-slice": "node scripts/bench-delta-slice-set-oriented.ts",
"benchmark:provider-first-fallback": "node scripts/provider-first-fallback-benchmark.ts",
"benchmark:background-graph-integrity": "node --experimental-strip-types scripts/background-graph-integrity-benchmark.ts",
"benchmark:record-trace": "node scripts/record-trace.ts",
"benchmark:setup-external": "node scripts/setup-external-benchmark-repos.ts",
"benchmark:external": "node scripts/external-benchmark-runner.mjs",
"benchmark:external:verify": "node scripts/verify-external-benchmark-evidence.mjs",
"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": "npm run build:scripts && node dist/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 --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-live-index": "node --experimental-strip-types --test tests/native/engine-affine-live-index.test.ts",
"test:native-parity": "node tests/native/parity-test.ts",
"test:parity": "node --experimental-strip-types --test-concurrency=1 --test tests/integration/engine-parity.test.ts",
"check:config-sync": "node scripts/check-config-sync.ts",
"check:schema-sync": "node scripts/check-schema-sync.mjs && node scripts/check-skin-template-sync.mjs",
"check:skin-template-sync": "node scripts/check-skin-template-sync.mjs",
"check:provider-first-graph": "node --experimental-strip-types scripts/check-provider-first-graph.ts",
"docs:language-support:check": "node --experimental-strip-types scripts/check-language-provider-support.ts",
"docs:tools:generate": "node --experimental-strip-types scripts/generate-tool-inventory.ts",
"docs:workflows:check": "node scripts/check-agent-workflows.mjs --check",
"docs:workflows:write": "node scripts/check-agent-workflows.mjs --write",
"docs:tools:check": "npm run docs:workflows:check && node --experimental-strip-types scripts/check-tool-inventory.ts",
"prepublishOnly": "npm run build:all && npm run lint && npm run typecheck",
"spike:ladybug": "node scripts/ladybug-spike.ts",
"test:stress": "npm run build && npx tsc --rootDir tests/stress --outDir dist/tests/stress --module nodenext tests/stress/run-stress.ts && node --expose-gc --max-old-space-size=4096 dist/tests/stress/run-stress.js --skip-build",
"test:mutation": "stryker run stryker.conf.cjs",
"test:coverage": "node --experimental-test-coverage scripts/run-tests.mjs",
"test:native-index-smoke": "node --experimental-strip-types scripts/native-index-smoke.ts",
"typecheck:scripts": "tsc -p tsconfig.scripts.json --noEmit",
"build:ui": "tsc -p tsconfig.ui.json",
"typecheck:ui": "tsc -p tsconfig.ui.json --noEmit",
"test:layout-parity": "node tests/native/layout-parity-test.ts",
"ladybug:openssl:build": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/build-ladybug-openssl-runtime.ps1",
"ladybug:openssl:verify": "node scripts/verify-ladybug-openssl-runtime.mjs",
"ladybug:openssl:pack": "npm pack ./ladybug-openssl/npm/win32-x64 --json",
"qa:isolated": "npm run build && node scripts/run-isolated-mutating-qa.mjs",
"qualify:ladybug": "npm run build && node scripts/qualify-ladybug-driver.mjs",
"test:tool-output-contract": "node --experimental-strip-types --test-concurrency=1 --test tests/unit/response-projection-inventory.test.ts tests/unit/tool-output-doc-contract.test.ts tests/integration/response-artifact-recovery.test.ts tests/integration/agent-output-matrix.test.ts tests/integration/mcp-output-schema-wire.test.ts"
},
"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": {
"@clack/prompts": "^0.11.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/sdk-trace-base": "^2.8.0",
"@opentelemetry/sdk-trace-node": "^2.8.0",
"fflate": "0.8.3",
"kuzu": "npm:@ladybugdb/core@0.19.0",
"three": "0.185.1",
"tree-sitter": "npm:@keqingmoe/tree-sitter@0.26.2",
"tree-sitter-bash": "npm:sdl-mcp-tree-sitter-bash@^1.0.1",
"tree-sitter-c": "npm:sdl-mcp-tree-sitter-c@^1.0.1",
"tree-sitter-c-sharp": "npm:sdl-mcp-tree-sitter-c-sharp@^1.0.1",
"tree-sitter-cpp": "npm:sdl-mcp-tree-sitter-cpp@^1.0.1",
"tree-sitter-go": "npm:sdl-mcp-tree-sitter-go@^1.0.1",
"tree-sitter-java": "npm:sdl-mcp-tree-sitter-java@^1.0.1",
"tree-sitter-kotlin": "npm:sdl-mcp-tree-sitter-kotlin@^1.0.1",
"tree-sitter-php": "npm:sdl-mcp-tree-sitter-php@^1.0.1",
"tree-sitter-python": "npm:sdl-mcp-tree-sitter-python@^1.0.1",
"tree-sitter-rust": "npm:sdl-mcp-tree-sitter-rust@^1.0.1",
"tree-sitter-typescript": "npm:sdl-mcp-tree-sitter-typescript@^1.0.1",
"typescript": "^5.9.3",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"zod": "^4.3.6"
},
"overrides": {
"@hono/node-server": "2.0.11",
"@humanfs/node": "0.16.8",
"adm-zip": "0.6.0",
"body-parser": "2.3.0",
"brace-expansion": "5.0.9",
"browserslist": "4.28.8",
"fast-uri": "3.1.6",
"flatted": "3.4.2",
"hono": "4.12.34",
"ip-address": "10.3.1",
"qs": "6.16.0",
"tar": "7.5.21",
"tree-sitter": "$tree-sitter"
},
"optionalDependencies": {
"chokidar": "^5.0.0",
"fb-watchman": "^2.0.2",
"@sdl-mcp/ladybug-openssl-win32-x64": "3.5.8-sdl.1",
"onnxruntime-node": "1.24.3",
"sdl-mcp-native": "0.13.7",
"sdl-mcp-watchman": "0.13.7",
"sdl-mcp-watchman-linux-x64": "0.13.7",
"sdl-mcp-watchman-win32-x64": "0.13.7",
"tokenizers": "npm:@anush008/tokenizers@^0.6.0"
},
"devDependencies": {
"@bufbuild/protobuf": "^2.0.0",
"@napi-rs/cli": "^2.18.0",
"@opentelemetry/sdk-trace-web": "^2.8.0",
"@stryker-mutator/core": "^9.6.0",
"@types/fb-watchman": "^2.0.6",
"@types/node": "^24.0.0",
"@types/three": "0.185.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"
}
}