-
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) · 950 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 950 Bytes
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": "genkit-shell",
"version": "1.1.5",
"description": "AI CLI interpreter using Genkit and Gemini",
"bin": {
"genkit-shell": "./bin/genkit-shell.js"
},
"type": "module",
"author": "Aleksandr Murzin",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cli",
"genkit",
"gemini",
"googleai",
"terminal",
"assistant",
"npx"
],
"homepage": "https://github.com/CyberScoper/genkit-shell#readme",
"repository": {
"type": "git",
"url": "https://github.com/CyberScoper/genkit-shell.git"
},
"bugs": {
"url": "https://github.com/CyberScoper/genkit-shell/issues"
},
"scripts": {
"start": "node ./bin/genkit-shell.js",
"postinstall": "echo '✅ Genkit Shell! Run: npx genkit-shell'"
},
"dependencies": {
"@genkit-ai/googleai": "^1.4.0",
"chalk": "^5.4.1",
"dotenv": "^16.4.7",
"genkit": "^1.4.0",
"node-pty": "^1.0.0"
}
}