-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 949 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": "rag-cli",
"version": "1.0.0",
"description": "Experimental CLI for local document indexing with embeddings, automatic categorization, and semantic search.",
"main": "dist/index.js",
"bin": {
"rag-cli": "dist/index.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node --loader ts-node/esm src/index.ts",
"typecheck": "tsc -p tsconfig.build.json --noEmit",
"test": "tsc -p tsconfig.json --noEmit && vitest run"
},
"keywords": [],
"author": "",
"license": "ISC",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.2.2",
"onFail": "download"
}
},
"type": "module",
"devDependencies": {
"@types/node": "^25.9.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"dependencies": {
"commander": "^14.0.3",
"sqlite": "^5.1.1",
"sqlite-vec": "^0.1.9",
"sqlite3": "^5.1.7"
}
}