-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.61 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
{
"name": "@identikey/metacoding",
"version": "0.1.4",
"description": "A local-first code-graph for AI coding agents. SCIP + LSP + Tree-sitter + FTS5 into an embedded graph, served over MCP.",
"type": "module",
"license": "MIT",
"author": "identikey",
"homepage": "https://github.com/WorldTreeNetwork/MetaCoding#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WorldTreeNetwork/MetaCoding.git"
},
"bugs": {
"url": "https://github.com/WorldTreeNetwork/MetaCoding/issues"
},
"keywords": [
"mcp",
"model-context-protocol",
"code-graph",
"scip",
"lsp",
"tree-sitter",
"kuzu",
"ladybugdb",
"ai-agents",
"claude-code",
"static-analysis",
"bun"
],
"engines": {
"bun": ">=1.1.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
".claude/skills",
".claude-plugin",
"tsconfig.json",
"README.md",
"LICENSE"
],
"bin": {
"metacoding": "src/cli/bin.ts"
},
"scripts": {
"smoke": "bun run scripts/smoke-ladybug.ts && bun run scripts/smoke-store.ts && bun run scripts/smoke-extractor.ts && bun run scripts/smoke-mcp-tools.ts && bun run scripts/smoke-scip.ts && bun run scripts/smoke-lsp.ts && bun run scripts/smoke-incremental.ts && bun run scripts/smoke-python.ts && bun run scripts/smoke-multirepo.ts && bun run scripts/smoke-paths.ts && bun run scripts/smoke-commit-sha.ts && bun run scripts/smoke-worktree-branch.ts && bun run scripts/smoke-mcp-scope.ts && bun run scripts/smoke-fts-sha.ts && bun run scripts/smoke-per-commit-identity.ts && bun run scripts/smoke-graph-diff.ts && bun run scripts/smoke-data-dir.ts && bun run scripts/smoke-summary.ts && bun run scripts/smoke-readonly.ts && bun run scripts/smoke-reopen.ts",
"codegen:ctkr-types": "bun run scripts/codegen-ctkr-types.ts",
"codegen:check": "bun run scripts/codegen-ctkr-types.ts"
},
"devDependencies": {
"@types/bun": "latest",
"protobufjs": "^8.0.3"
},
"peerDependencies": {
"typescript": "^6.0.3"
},
"dependencies": {
"@duckdb/node-api": "^1.5.3-r.2",
"@ladybugdb/core": "^0.15.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sourcegraph/scip-python": "^0.6.6",
"@sourcegraph/scip-typescript": "^0.4.0",
"chokidar": "^5.0.0",
"google-protobuf": "^4.0.2",
"quicktype-core": "^23.2.6",
"tree-sitter-wasms": "^0.1.13",
"typescript-language-server": "^5.1.3",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"web-tree-sitter": "0.22.6",
"yaml": "^2.9.0",
"zod": "^3.25.1"
},
"trustedDependencies": [
"@ladybugdb/core"
]
}