-
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) · 1.11 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.11 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
{
"name": "code-rag",
"version": "1.0.0",
"description": "A TypeScript-based CLI application",
"main": "dist/index.js",
"bin": {
"code-rag": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build",
"install:global": "npm run build && npm link && npm run setup:config",
"setup:config": "cp .coderag.json ~/.coderag.json 2>/dev/null || cp .coderag.json %USERPROFILE%\\.coderag.json 2>nul || echo 'Config already exists or copy failed'"
},
"keywords": [
"cli",
"typescript"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^25.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.72.1",
"@google/generative-ai": "^0.24.1",
"@xenova/transformers": "^2.17.2",
"chalk": "^5.6.2",
"chromadb": "^3.2.2",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"minimatch": "^10.1.1",
"ora": "^9.1.0"
}
}