-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 890 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 890 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
39
40
41
42
{
"name": "@yeoularu/rag-cli",
"version": "0.1.1",
"private": false,
"type": "module",
"bin": {
"rag": "bin/rag-cli.js",
"rag-cli": "bin/rag-cli.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "bun --watch src/cli/index.ts",
"build": "bun build src/cli/index.ts --target=node --format=esm --outfile dist/cli/index.js",
"prepublishOnly": "bun run build",
"format": "prettier --write ."
},
"dependencies": {
"@ai-sdk/google": "^2.0.6",
"@clack/prompts": "^0.11.0",
"@libsql/client": "^0.15.11",
"@types/yargs": "^17.0.33",
"ai": "^5.0.15",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.6.2"
},
"peerDependencies": {
"typescript": "^5.9.2"
}
}