-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.65 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
71
72
73
74
75
{
"name": "agent-cli",
"version": "1.10.2",
"private": true,
"description": "A local-first, terminal-native, safely extensible general-purpose agent harness.",
"keywords": [
"agent",
"cli",
"llm",
"anthropic",
"claude",
"terminal",
"sandbox",
"coding-agent",
"developer-tools",
"openai",
"deepseek",
"kimi",
"glm",
"multi-provider",
"research",
"web-search",
"tavily"
],
"homepage": "https://github.com/earthwalker17/agent-cli#readme",
"bugs": {
"url": "https://github.com/earthwalker17/agent-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/earthwalker17/agent-cli.git"
},
"license": "MIT",
"author": "Eric Mono (https://github.com/earthwalker17)",
"type": "module",
"bin": {
"agent": "dist/cli/index.js"
},
"exports": {
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "node -e \"fs.rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli/index.js",
"prepare": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.116.0",
"@rgrove/parse-xml": "^4.2.3",
"diff": "^8.0.4",
"fflate": "^0.8.3",
"ignore": "^7.0.6",
"playwright-core": "^1.62.1",
"undici": "^7.29.0",
"unpdf": "^1.8.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "~5.9.3",
"vitest": "^4.1.10"
}
}