-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 951 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 951 Bytes
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
{
"name": "litesearch",
"workspaces": [
"packages/*"
],
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"format": "prettier . --check",
"format:fix": "prettier . --write",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"ingest": "bun run src/index.ts ingest",
"retrieve": "bun run src/index.ts retrieve",
"tui": "bun run src/index.ts tui"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript-eslint": "^8.57.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@chonkiejs/core": "^0.0.8",
"@clack/prompts": "^1.1.0",
"@huggingface/transformers": "^3.8.1",
"@llamaindex/liteparse": "^1.0.1",
"@visulima/colorize": "^1.4.29",
"commander": "^14.0.3",
"qdrant-edge-utils": "workspace:*"
}
}