-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.84 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
{
"name": "vectorless-js",
"version": "0.5.2",
"description": "Vectorless, reasoning-based RAG (PageIndex) in JavaScript. Runs in the browser via WASM and anywhere JS runs. Deterministic tree index plus LLM tree-search retrieval.",
"license": "MIT",
"keywords": [
"rag",
"pageindex",
"vectorless",
"retrieval",
"llm",
"wasm",
"pdf",
"browser",
"tree-search",
"no-embeddings"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ancs21/vectorless-js.git"
},
"homepage": "https://github.com/ancs21/vectorless-js#readme",
"bugs": {
"url": "https://github.com/ancs21/vectorless-js/issues"
},
"type": "module",
"module": "./dist-lib/index.js",
"main": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist-lib/index.d.ts",
"import": "./dist-lib/index.js"
},
"./parse": {
"types": "./dist-lib/parse.d.ts",
"import": "./dist-lib/parse.js"
}
},
"files": [
"dist-lib",
"README.md",
"LICENSE"
],
"scripts": {
"build:lib": "tsc -p tsconfig.build.json",
"prepublishOnly": "tsc -p tsconfig.build.json",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "bun test",
"typecheck": "tsc --noEmit",
"docs:dev": "blume dev",
"docs:build": "blume build",
"docs:preview": "blume preview"
},
"peerDependencies": {
"@llamaindex/liteparse-wasm": "^2.6.0"
},
"peerDependenciesMeta": {
"@llamaindex/liteparse-wasm": {
"optional": true
}
},
"dependencies": {
"gpt-tokenizer": "^3.4.0"
},
"devDependencies": {
"@llamaindex/liteparse-wasm": "^2.6.0",
"blume": "^1.0.4",
"solid-js": "^1.9.14",
"typescript": "^5.6.3",
"vite": "^6.0.0",
"vite-plugin-solid": "^2.11.12"
}
}