-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.24 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
{
"name": "vectoria-browser",
"version": "2.0.0",
"description": "Browser-first text exploration, clustering and semantic search",
"type": "module",
"scripts": {
"dev": "npx serve web_interface -p 5050",
"network": "lsof -ti:5050 | xargs kill -9 2>/dev/null || true && node start-network.js",
"https": "lsof -ti:5050 | xargs kill -9 2>/dev/null || true && ./start-https.sh",
"build": "node scripts/build-mcp.js",
"stamp": "node scripts/stamp-version.js",
"stamp:check": "node scripts/stamp-version.js --check",
"release": "node scripts/stamp-version.js && node scripts/build-mcp.js",
"preview": "npx serve web_interface -p 5050"
},
"dependencies": {
"@chonkiejs/core": "^0.0.11",
"@huggingface/transformers": "4.2.0",
"@mlc-ai/web-llm": "0.2.84",
"localforage": "^1.10.0",
"papaparse": "^5.5.4",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"serve": "^14.2.6"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"rag",
"vector-search",
"semantic-search",
"embeddings",
"llm",
"browser-ml",
"transformers.js",
"webllm",
"umap",
"interpretability"
],
"author": "Armin Pasalic",
"license": "MIT"
}