-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.86 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
{
"name": "cgraph",
"version": "0.5.0",
"description": "Token-efficient code retrieval for AI agents. Builds a queryable graph of your codebase and serves it over MCP, so agents stop burning context on grep and whole-file reads.",
"type": "module",
"license": "Apache-2.0",
"author": "Ramachandra Joshi <ramueargoppa@gmail.com>",
"homepage": "https://github.com/Ramachandrajoshi/Code-Graph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Ramachandrajoshi/Code-Graph.git"
},
"bugs": {
"url": "https://github.com/Ramachandrajoshi/Code-Graph/issues"
},
"engines": {
"node": ">=22.13.0"
},
"bin": {
"cgraph": "./bin/cgraph.js"
},
"main": "./src/index.js",
"exports": {
".": "./src/index.js",
"./sdk": "./src/sdk/index.js",
"./package.json": "./package.json"
},
"files": [
"bin/",
"src/",
"LICENSE",
"NOTICE",
"README.md"
],
"scripts": {
"test": "node --test \"test/**/*.test.js\"",
"test:watch": "node --test --watch \"test/**/*.test.js\"",
"bench": "node bench/run.js",
"prepublishOnly": "npm test",
"release": "node scripts/release.js"
},
"dependencies": {
"ignore": "^7.0.5",
"web-tree-sitter": "~0.25.10"
},
"peerDependencies": {
"tree-sitter-wasms": "^0.1.13"
},
"peerDependenciesMeta": {
"tree-sitter-wasms": {
"optional": true
}
},
"devDependencies": {
"tree-sitter-wasms": "^0.1.13"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"llm",
"agent",
"claude",
"cursor",
"copilot",
"tokens",
"context",
"code-search",
"cgraph",
"knowledge-graph",
"call-graph",
"impact-analysis",
"tree-sitter",
"static-analysis",
"codebase-indexing",
"developer-tools"
],
"publishConfig": {
"access": "public",
"provenance": true
}
}