-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "agentic-shell",
"version": "1.0.0",
"description": "Agentic Shell (AGIsh) is an experimental shell where commands are interpreted by a large language model (LLM). ",
"main": "dist/index.js",
"scripts": {
"dev": "node --env-file=.env -r ts-node/register -r tsconfig-paths/register src/index.ts",
"build": "./scripts/build.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flux159/agentic-shell.git"
},
"keywords": [
"agish",
"agentic-shell",
"llm"
],
"author": "Flux159",
"license": "MIT",
"bugs": {
"url": "https://github.com/Flux159/agentic-shell/issues"
},
"homepage": "https://github.com/Flux159/agentic-shell#readme",
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.12.0",
"@anthropic-ai/sdk": "^0.33.1",
"commander": "^13.0.0",
"openai": "^4.77.4",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"esbuild": "^0.24.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
}
}