@onkernel/cua-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@onkernel/cua-cli",
3
+ "version": "0.1.0",
4
+ "description": "Kernel-cloud-browser computer-use TUI built on @onkernel/cua-agent and pi-tui",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/cli.js",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/kernel/cua.git",
11
+ "directory": "packages/cli"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/kernel/cua/issues"
15
+ },
16
+ "homepage": "https://github.com/kernel/cua/tree/main/packages/cli#readme",
17
+ "bin": {
18
+ "cua": "./dist/cli.js"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md"
23
+ ],
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "engines": {
28
+ "node": ">=22.19.0"
29
+ },
30
+ "scripts": {
31
+ "build": "tsdown && chmod +x dist/cli.js",
32
+ "clean": "tsc -b --clean && rm -rf dist dist-tsc",
33
+ "test": "vitest --run",
34
+ "typecheck": "tsc -b"
35
+ },
36
+ "dependencies": {
37
+ "@earendil-works/pi-coding-agent": "0.79.1",
38
+ "@earendil-works/pi-tui": "0.79.1",
39
+ "@onkernel/cua-agent": "0.3.3",
40
+ "@onkernel/cua-ai": "0.3.0",
41
+ "@onkernel/sdk": "0.49.0"
42
+ },
43
+ "devDependencies": {
44
+ "@onkernel/ptywright": "0.1.0",
45
+ "tsdown": "^0.22.2",
46
+ "vitest": "^3.2.4"
47
+ }
48
+ }