-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.64 KB
/
package.json
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
{
"name": "ai-research-agent",
"version": "1.0.0",
"module": "index.js",
"type": "module",
"description": "Search, extract, vectorize and outline graph a topic base with AI Research Agent.",
"author": "vtempest <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"dev": "NODE_NO_WARNINGS=1 cd web-app; bunx vite dev",
"serve": "NODE_NO_WARNINGS=1 cd web-app; bunx vite build; bunx wrangler deploy; bunx wrangler tail",
"docs": "typedoc; cmd.exe /c start \"\" docs/index.html; open docs/index.html",
"test": "vitest",
"test-ui": "vitest --ui --watch"
},
"devDependencies": {
"@jsprismarine/typedoc-material-theme": "^1.0.4",
"@mxssfd/typedoc-theme": "^1.1.7",
"@tsconfig/svelte": "^5.0.4",
"@vitest/ui": "^2.1.4",
"adm-zip": "^0.5.16",
"axios": "^1.7.7",
"fast-xml-parser": "^4.5.0",
"icojs": "^0.19.4",
"sharp": "^0.33.5",
"typedoc": "^0.26.10",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-ga": "^1.0.4",
"vitest": "^2.1.4"
},
"dependencies": {
"@huggingface/transformers": "^3.0.1",
"@langchain/anthropic": "^0.3.8",
"@langchain/community": "^0.3.16",
"@langchain/core": "^0.3.22",
"@langchain/google-vertexai-web": "^0.1.3",
"@langchain/groq": "^0.1.2",
"@langchain/openai": "^0.3.14",
"@langchain/xai": "^0.0.1",
"@popperjs/core": "^2.11.8",
"chrono-node": "^2.7.7",
"highlight.js": "^11.10.0",
"hnswlib-wasm": "^0.8.2",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"katex": "^0.16.11",
"linkedom": "^0.18.5",
"lunr": "^2.3.9",
"pdfjs-serverless": "^0.6.0",
"umap-js": "^1.4.0"
}
}