-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.08 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.08 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
{
"name": "itty-bitty-rag",
"scripts": {
"fix": "run-s fix:*",
"fix:prettier": "prettier --write .",
"fix:lint": "eslint --fix src",
"prettier": "prettier --check .",
"test": "run-s test:*",
"test:check": "tsc --noEmit --skipLibCheck",
"test:lint": "eslint .",
"test:prettier": "prettier \"src\" --list-different",
"ingest": "tsx src/ingest.ts",
"search": "tsx src/search.ts"
},
"type": "module",
"dependencies": {
"@lancedb/lancedb": "^0.27.2",
"openai": "^6.37.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.4",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-functional": "^9.0.4",
"eslint-plugin-unicorn": "^64.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3"
},
"packageManager": "pnpm@10.33.4",
"module": "index.ts"
}