-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 KB
/
package.json
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
{
"name": "shellbuddy",
"version": "1.0.3-beta.1",
"description": "A convenient command-line tool for automating shell commands like git commits, systemstats, git tags and more to come",
"main": "index.js",
"type": "module",
"bin": {
"buddy": "./index.js"
},
"scripts": {
"test": "jest",
"start": "node index.js"
},
"keywords": [
"shell",
"command-line",
"utility",
"nodejs"
],
"author": "Adev",
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.16.0",
"@xenova/transformers": "^2.17.1",
"cohere": "^1.1.1",
"cohere-ai": "^7.9.5",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"inquirer": "^10.1.8",
"langchain": "^0.2.0",
"mic": "^2.1.2",
"node-pty": "^1.0.0",
"ollama": "^0.5.0",
"promisify": "^0.0.3",
"readline": "^1.3.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@eslint/compat": "^1.1.0",
"@eslint/js": "^9.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"globals": "^15.6.0",
"jest": "^29.7.0"
}
}