-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "computer-use-agent",
"version": "1.0.0",
"description": "An interactive CLI agent that can execute bash commands safely through natural language",
"main": "dist/main.js",
"bin": {
"cua": "dist/main.js"
},
"scripts": {
"start": "node dist/main.js",
"start:auto": "node dist/main.js --auto",
"dev": "ts-node-esm src/main.ts",
"dev:auto": "ts-node-esm src/main.ts --auto",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "npm run clean && npm run build",
"lint": "eslint src --ext .ts",
"format": "prettier --write src/**/*.ts"
},
"files": [
"dist",
".env.example"
],
"keywords": [
"cli",
"ai",
"bash",
"agent",
"openai",
"assistant",
"terminal",
"shell"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"boxen": "^7.1.1",
"chalk": "^5.6.2",
"cli-spinners": "^3.3.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"execa": "^8.0.1",
"gradient-string": "^2.0.2",
"inquirer": "^9.2.23",
"inquirer-command-prompt": "^0.1.0",
"openai": "^4.28.4",
"ora": "^8.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^4.1.4"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module"
}