-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.75 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
{
"name": "@inferensys/contextful",
"version": "0.1.0",
"description": "CLI-first context engine for agentic AI: local code search, evidence packs, MCP runtime context, and memory for Claude Code, Codex, Cursor, Windsurf, and Copilot.",
"type": "module",
"main": "dist/index.js",
"bin": {
"cxf": "dist/cli.js",
"contextful": "dist/cli.js"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE",
"server.json",
"tests/fixtures"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"check": "npm run build && npm run test",
"prepare": "npm run build",
"prepack": "npm run check"
},
"keywords": [
"mcp",
"model-context-protocol",
"context",
"context-management",
"token-efficiency",
"agentic-ai",
"code-search",
"evidence-packs",
"codebase",
"agent-memory",
"codex",
"claude-code",
"cursor",
"windsurf",
"github-copilot",
"vscode",
"cline",
"roo-code",
"continue",
"zed"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.10.0",
"commander": "^14.0.3",
"fast-glob": "^3.3.3",
"ignore": "^7.0.5",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.20.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.8.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"engines": {
"node": ">=20"
},
"homepage": "https://inferensys.github.io/contextful/",
"repository": {
"type": "git",
"url": "git+https://github.com/Inferensys/contextful.git"
},
"bugs": {
"url": "https://github.com/Inferensys/contextful/issues"
},
"mcpName": "io.github.Inferensys/contextful"
}