-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.39 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.39 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
{
"name": "contextix",
"version": "0.4.0",
"description": "CLI toolkit for agentic AI. Ingest any source (RSS, markdown, URLs) into a queryable knowledge graph.",
"type": "module",
"main": "./dist/server.js",
"types": "./dist/server.d.ts",
"bin": {
"contextix": "dist/index.js"
},
"exports": {
".": {
"import": "./dist/server.js",
"types": "./dist/server.d.ts"
},
"./skill": {
"import": "./dist/skill/index.js",
"types": "./dist/skill/index.d.ts"
}
},
"scripts": {
"build": "tsup src/index.ts src/server.ts src/skill/index.ts --format esm --dts --clean",
"dev": "tsup src/index.ts src/server.ts src/skill/index.ts --format esm --dts --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"knowledge-graph",
"agentic-ai",
"cli",
"typescript"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vericontext/contextix.git"
},
"files": [
"dist",
"data",
"examples",
"README.md",
"LICENSE",
"CONTRIBUTING.md"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"@supabase/supabase-js": "^2.103.3",
"commander": "^13.1.0",
"fast-xml-parser": "^5.7.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^25.6.0",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
}
}