-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 1.89 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 1.89 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
{
"name": "treedex",
"version": "0.1.5",
"description": "Tree-based, vectorless document RAG framework. Connect any LLM via URL/API key.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"keywords": [
"rag",
"retrieval",
"llm",
"tree",
"document",
"pdf",
"ai",
"vectorless"
],
"author": "Mithun Gowda B <mithungowda.b7411@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mithun50/TreeDex"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"gpt-tokenizer": "^2.8.0",
"pdfjs-dist": "^4.9.155"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.30.0",
"@google/generative-ai": ">=0.21.0",
"@mistralai/mistralai": ">=1.0.0",
"cohere-ai": ">=7.0.0",
"groq-sdk": ">=0.5.0",
"htmlparser2": ">=9.0.0",
"mammoth": ">=1.6.0",
"openai": ">=4.0.0"
},
"peerDependenciesMeta": {
"@anthropic-ai/sdk": {
"optional": true
},
"@google/generative-ai": {
"optional": true
},
"@mistralai/mistralai": {
"optional": true
},
"cohere-ai": {
"optional": true
},
"groq-sdk": {
"optional": true
},
"openai": {
"optional": true
},
"htmlparser2": {
"optional": true
},
"mammoth": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.3.3",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}