-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "create-computeragent",
"version": "0.1.0",
"description": "Scaffold a runnable ComputerAgent project in 60 seconds. `npx create-computeragent my-agent`",
"license": "MIT",
"type": "module",
"bin": {
"create-computeragent": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": ["dist", "template", "README.md"],
"keywords": [
"ai-agents",
"agent-framework",
"anthropic",
"claude",
"agent-protocol",
"scaffolding",
"create-app"
],
"homepage": "https://github.com/open-gitagent/ComputerAgent",
"repository": {
"type": "git",
"url": "https://github.com/open-gitagent/ComputerAgent.git",
"directory": "packages/create-computeragent"
},
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/cli.js 2>/dev/null || true",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run --passWithNoTests",
"clean": "rm -rf dist .turbo *.tsbuildinfo"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20"
}
}