-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.37 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.37 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
{
"name": "contentaug",
"version": "0.1.0",
"description": "",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"mcp",
"rag",
"vector-search",
"documentation",
"ai",
"llm",
"local"
],
"files": [
"dist",
"profiles.json",
"README.md",
"LICENSE"
],
"type": "module",
"bin": {
"contentaug": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsup",
"serve": "tsx src/server.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@huggingface/transformers": "^3",
"@langchain/community": "^0.3",
"@langchain/core": "^0.3",
"@langchain/openai": "^0.3",
"@modelcontextprotocol/sdk": "^1",
"@mozilla/readability": "^0.5",
"@orama/orama": "3.1.6",
"@orama/plugin-data-persistence": "3.1.6",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^9.6.0",
"commander": "^12",
"jsdom": "^24",
"langchain": "^0.3",
"zod": "^3",
"@ibm-cloud/watsonx-ai": "1.7.5",
"ibm-cloud-sdk-core": "5.4.3",
"weaviate-client": "3.9.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/better-sqlite3": "^7",
"@types/jsdom": "^21",
"@types/mozilla__readability": "^0.4",
"@types/node": "^18",
"tsup": "^8",
"tsx": "^4.21.0",
"typescript": "^5.4"
}
}