-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.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
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
93
94
95
96
{
"name": "@lubab/madar",
"version": "0.32.1",
"mcpName": "io.github.mohanagy/madar",
"description": "Stop AI coding agents from rediscovering large TypeScript/Node repos. Madar compiles task-aware local context packs from what runs for this task.",
"license": "MIT",
"author": "mohanagy",
"bin": {
"madar": "dist/src/cli/bin.js"
},
"type": "module",
"files": [
"dist/",
"examples/",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"ai-agents",
"claude-code",
"cli",
"code-intelligence",
"codebase",
"codex",
"context",
"code-review",
"coding-agents",
"copilot",
"cursor",
"impact-analysis",
"graphrag",
"knowledge-graph",
"mcp",
"nodejs",
"pr-review",
"static-analysis",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mohanagy/madar.git"
},
"bugs": {
"url": "https://github.com/mohanagy/madar/issues"
},
"homepage": "https://github.com/mohanagy/madar#readme",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "node --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true })\"",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prepack": "npm run clean && npm run build",
"pack:dry-run": "npm pack --dry-run",
"publish:public": "npm publish --access public",
"publish:next": "npm publish --tag next --access public",
"publish:dry-run": "npm publish --dry-run",
"release:verify": "node .github/scripts/verify-release-hygiene.mjs",
"verify:pack-parity": "node .github/scripts/verify-packed-retrieval-parity.mjs",
"registry:validate": "node .github/scripts/validate-mcp-registry.mjs"
},
"devDependencies": {
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.5",
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"vite": "^8.0.11",
"vitest": "^4.1.5",
"yaml": "^2.9.0"
},
"dependencies": {
"@vscode/tree-sitter-wasm": "^0.3.1",
"fflate": "^0.8.2",
"gpt-tokenizer": "^3.4.0",
"neo4j-driver": "^6.0.1",
"typescript": "^6.0.3",
"web-tree-sitter": "^0.26.8"
},
"peerDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"peerDependenciesMeta": {
"@huggingface/transformers": {
"optional": true
}
}
}