-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 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
{
"name": "@computeragent/cli",
"version": "0.1.0",
"description": "computeragent — CLI for the Harness Protocol. Run any GAP agent, anywhere, with any loop.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"computeragent": "./dist/cli.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js 2>/dev/null || true",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"clean": "rm -rf dist .turbo *.tsbuildinfo"
},
"dependencies": {
"@open-gitagent/sdk": "workspace:*",
"citty": "^0.1.6"
},
"devDependencies": {
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"keywords": [
"ai-agents",
"agent-cli",
"computeragent",
"anthropic",
"claude"
],
"homepage": "https://github.com/open-gitagent/ComputerAgent",
"repository": {
"type": "git",
"url": "https://github.com/open-gitagent/ComputerAgent.git",
"directory": "packages/cli"
}
}