-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 739 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 739 Bytes
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
{
"name": "web-agent-console",
"version": "1.0.0-alpha.2",
"description": "Local-first Web console for Codex and Claude agent sessions.",
"license": "MIT",
"type": "module",
"bin": {
"web-agent-console": "bin/web-agent-console.js"
},
"files": [
"bin",
"public",
"scripts",
"src"
],
"engines": {
"node": ">=22"
},
"keywords": [
"agent",
"codex",
"claude",
"cli",
"console",
"web"
],
"scripts": {
"start": "node ./bin/web-agent-console.js",
"test": "node --test ./tests/*.test.js",
"smoke": "bash ./scripts/smoke-local.sh"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.81",
"markdown-it": "^14.1.1",
"ws": "^8.18.0"
}
}