-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 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
{
"name": "codebone",
"version": "0.2.0",
"description": "Agent-native CLI and MCP server for compact code context.",
"type": "module",
"bin": {
"codebone": "dist/index.js"
},
"files": [
"dist",
"src/languages/queries",
"src/languages/wasm",
"docs",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:contracts": "vitest run tests/contracts.test.ts",
"test:security": "vitest run tests/security.test.ts",
"typecheck": "tsc --noEmit",
"doctor": "node dist/index.js doctor",
"bench:smoke": "tsx benches/smoke.ts",
"bench:tokens": "tsx benches/token-savings.ts --root . --goal \"understand MCP server implementation\"",
"docs:check": "node scripts/docs-check.mjs",
"mcp:inspector": "npx @modelcontextprotocol/inspector node dist/index.js mcp --root .",
"pack:smoke": "node scripts/pack-smoke.mjs",
"package:check": "node scripts/package-check.mjs",
"release:check": "npm run typecheck && npm run lint && npm test && npm run test:contracts && npm run test:security && npm run build && npm run bench:smoke && npm run bench:tokens && npm run docs:check && npm audit --audit-level=moderate && npm run package:check && npm run pack:smoke"
},
"keywords": [
"ai",
"coding",
"agent",
"ast",
"tree-sitter",
"mcp",
"context",
"optimization",
"claude",
"copilot",
"llm",
"skeleton",
"code-analysis"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^12.1.0",
"ignore": "^5.3.2",
"minimatch": "^9.0.5",
"web-tree-sitter": "^0.26.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.17.10",
"tsup": "^8.3.5",
"tsx": "^4.21.0",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
}
}