-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.78 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
{
"name": "scrooge",
"version": "0.2.0",
"description": "Local MCP server for code-aware Repo Map + Hybrid RAG, reducing token spend in agent planning mode",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./api": "./dist/api/index.js"
},
"bin": {
"scrooge": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"pretest": "npm rebuild better-sqlite3 --loglevel=error",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/ test/",
"typecheck": "tsc --noEmit",
"export": "node bin/export.mjs",
"eval": "node --import tsx/esm bin/eval.mjs",
"setup": "node bin/setup.mjs",
"uninstall": "node bin/uninstall.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@xenova/transformers": "^2.17.0",
"better-sqlite3": "^12.6.2",
"sqlite-vec": "^0.1.6",
"tree-sitter": "^0.21.1",
"tree-sitter-dart": "github:UserNobody14/tree-sitter-dart#c1222f5",
"tree-sitter-kotlin": "^0.3.8",
"tree-sitter-python": "^0.21.0",
"tree-sitter-typescript": "^0.23.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"overrides": {
"@hono/node-server": "^1.19.14",
"brace-expansion": "^5.0.5",
"express-rate-limit": "^8.3.2",
"flatted": "^3.4.2",
"hono": "^4.12.14",
"minimatch": "^10.2.4",
"path-to-regexp": "^8.4.2",
"picomatch": "^4.0.4",
"vite": "^7.3.2"
},
"engines": {
"node": ">=20.0.0"
}
}