-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "nlshell",
"version": "1.0.3",
"description": "Convert natural language to shell commands using multiple AI providers (OpenAI, Anthropic, Google, Ollama)",
"main": "index.js",
"bin": {
"nlshell": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"shell",
"openai",
"anthropic",
"google",
"ollama",
"ai",
"command",
"natural-language",
"gpt",
"claude",
"gemini"
],
"author": "trojan0x",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/trojan0x/ai-shell.git"
},
"homepage": "https://github.com/trojan0x/ai-shell#readme",
"bugs": {
"url": "https://github.com/trojan0x/ai-shell/issues"
},
"dependencies": {
"commander": "^11.1.0",
"openai": "^4.20.1",
"@anthropic-ai/sdk": "^0.18.0",
"@google/generative-ai": "^0.21.0",
"chalk": "^5.3.0",
"ora": "^7.0.1",
"inquirer": "^9.2.12"
},
"type": "module"
}