-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
47
48
49
50
{
"name": "cmdh",
"type": "module",
"dependencies": {
"chalk": "^5.2.0",
"clipboardy": "^3.0.0",
"dotenv": "^16.0.3",
"form-data": "^4.0.0",
"inquirer": "^9.3.7",
"inquirer-interactive-list-prompt": "^1.0.4",
"ollama": "^0.4.4",
"openai": "^4.24.0",
"ora": "^6.3.0",
"ts-loader": "^9.5.1"
},
"description": "cmdh (i.e. command helper) is a program that invokes an LLM model to convert a command request into a desired command, which you can then execute.",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pgibler/cmdm.git"
},
"keywords": [
"ai",
"terminal",
"shell",
"linux",
"command",
"assistant"
],
"author": "gibler",
"license": "MIT",
"bugs": {
"url": "https://github.com/pgibler/cmdh/issues"
},
"homepage": "https://github.com/pgibler/cmdh#readme",
"devDependencies": {
"@babel/preset-typescript": "^7.25.7",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.13",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}