-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.23 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@cloi-ai/cloi",
"version": "1.0.8",
"description": "Security-first agentic debugging tool for the terminal",
"main": "bin/index.js",
"type": "module",
"bin": {
"cloi": "bin/index.js",
"cloi-setup": "bin/cloi-setup.cjs",
"cloi-ollama-setup": "bin/ollama-setup.cjs"
},
"scripts": {
"postinstall": "node bin/cloi-setup.cjs --auto && (pip install -r bin/requirements.txt || pip3 install -r bin/requirements.txt || echo 'Python requirements installation failed - continuing...') && node bin/ollama-setup.cjs",
"dev": "node bin/index.js",
"dev:setup": "node bin/cloi-setup.cjs",
"dev:ollama": "node bin/ollama-setup.cjs",
"codebert-setup": "node bin/codebert-setup.cjs",
"codebert-service": "python3 bin/codebert_service.py --port 3090",
"codebert-start": "nohup python3 bin/codebert_service.py --port 3090 > /dev/null 2>&1 & echo 'CodeBERT service started in background'",
"setup-all": "npm run dev:setup && npm run codebert-setup && npm run dev:ollama",
"link": "npm link",
"unlink": "npm unlink",
"clean": "rm -rf node_modules package-lock.json",
"reinstall": "npm run clean && npm install",
"test-rag": "node -e \"import('./src/rag/index.js').then(r => console.log('RAG system loaded successfully'))\""
},
"author": "Gabriel Cha, Min Kim",
"license": "GPL-3.0",
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@huggingface/transformers": "^3.0.2",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"faiss-node": "^0.5.1",
"ollama": "0.5.15",
"seedrandom": "^3.0.5",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cloi-ai/cloi"
},
"homepage": "https://github.com/cloi-ai/cloi#readme",
"keywords": [
"cli",
"terminal",
"debug",
"llm",
"ollama",
"ai",
"debugging",
"claude",
"sonnet",
"opus",
"command-line",
"developer-tools"
],
"files": [
"bin/",
"src/",
"README.md",
"LICENSE"
]
}