-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.29 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
{
"name": "sipcode",
"version": "1.6.18",
"mcpName": "io.github.Anuj7411/sipcode",
"description": "Sip your tokens, don't gulp them. Keep Claude Code's context clean: drift detection, re-read dedup, integrity scoring, AST-aware reads, and 15 MCP tools for Claude Desktop.",
"keywords": [
"claude-code",
"claude-desktop",
"ai-coding",
"token-optimization",
"context-engineering",
"drift-detection",
"context-rot",
"mcp",
"ast",
"cursor",
"cli",
"context-window",
"cost-reduction",
"reliability"
],
"homepage": "https://github.com/Anuj7411/sipcode",
"repository": {
"type": "git",
"url": "git+https://github.com/Anuj7411/sipcode.git"
},
"bugs": {
"url": "https://github.com/Anuj7411/sipcode/issues"
},
"license": "MIT",
"author": {
"name": "Anuj Ojha",
"url": "https://github.com/Anuj7411"
},
"type": "module",
"bin": {
"sipcode": "dist/cli.js",
"sipcode-mcp": "dist/mcp/server.js"
},
"main": "dist/index.js",
"files": [
"dist",
"benchmark/corpus",
"benchmark/METHODOLOGY.md",
"CHANGELOG.md",
"README.md",
"LICENSE",
"PRIVACY.md"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-assets.mjs",
"dev": "tsx src/cli.ts",
"test": "vitest run --exclude tests/e2e/",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"clean": "rimraf dist coverage",
"test:e2e": "vitest run tests/e2e/"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@resvg/resvg-js": "^2.6.2",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"ora": "^8.1.0",
"prompts": "^2.4.2",
"satori": "^0.11.3",
"tree-sitter": "^0.21.1",
"tree-sitter-go": "^0.21.0",
"tree-sitter-javascript": "^0.21.0",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.21.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/prompts": "^2.4.9",
"@vitest/coverage-v8": "^2.0.0",
"rimraf": "^6.0.0",
"tsx": "^4.16.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
}
}