-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.31 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.31 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
{
"name": "token-pilot",
"version": "0.34.3",
"description": "Save up to 80% tokens when AI reads code — MCP server for token-efficient code navigation, AST-aware structural reading instead of dumping full files into context window",
"type": "module",
"main": "dist/index.js",
"bin": {
"token-pilot": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"agents/*.md",
"docs/*.md",
"scripts/postinstall.mjs",
"start.sh",
".claude-plugin/",
"hooks/hooks.json",
".mcp.json",
"skills/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"prebuild": "node --input-type=module -e \"import { rm } from 'node:fs/promises'; await rm('dist', { recursive: true, force: true });\"",
"build": "tsc && node scripts/build-agents.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"bench:hook": "node scripts/bench-hook.mjs",
"postinstall": "node scripts/postinstall.mjs",
"lint": "tsc --noEmit",
"prepublishOnly": "npm run build && node --input-type=module -e \"import { chmod } from 'node:fs/promises'; await chmod('dist/index.js', 0o755);\""
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"claude",
"claude-code",
"cursor",
"codex",
"cline",
"ai-coding",
"llm-tools",
"token-savings",
"token-reduction",
"context-window",
"context-optimization",
"ast",
"code-reading",
"code-navigation",
"smart-read",
"developer-tools",
"tree-sitter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Digital-Threads/token-pilot.git"
},
"homepage": "https://github.com/Digital-Threads/token-pilot#readme",
"bugs": {
"url": "https://github.com/Digital-Threads/token-pilot/issues"
},
"mcpName": "io.github.Digital-Threads/token-pilot",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"@ast-index/cli": "^3.38.0",
"chokidar": "^4.0.3"
},
"devDependencies": {
"@vitest/coverage-v8": "^3.2.4",
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"optionalDependencies": {
"@ast-grep/cli": "^0.41.0"
}
}