-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 881 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 881 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
38
39
40
41
42
43
44
{
"name": "@codebolt/agentic-tui",
"version": "0.3.0",
"description": "CLI for AI agents to run, inspect, and control terminal/TUI applications.",
"type": "module",
"bin": {
"agentic-tui": "dist/src/cli.js"
},
"files": [
"dist/src/",
"skills/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "npm run build && node --test dist/tests/all.test.js",
"prepack": "npm run build",
"start": "node dist/src/cli.js"
},
"dependencies": {
"@napi-rs/canvas": "^0.1.100",
"@xterm/headless": "^6.0.0",
"node-pty": "^1.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"tui",
"cli",
"pty",
"terminal",
"automation"
],
"license": "MIT"
}