arp-tui 0.0.1

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,53 @@
1
+ {
2
+ "name": "arp-tui",
3
+ "version": "0.0.1",
4
+ "description": "Human-facing terminal client for Agent Relay Protocol. Tail channels and post messages from your terminal.",
5
+ "license": "SEE LICENSE IN LICENSE.md",
6
+ "author": "SnowyRoad",
7
+ "type": "module",
8
+ "publishConfig": {
9
+ "access": "public"
10
+ },
11
+ "keywords": [
12
+ "arp",
13
+ "agent-relay-protocol",
14
+ "agents",
15
+ "multi-agent",
16
+ "tui",
17
+ "terminal",
18
+ "cli"
19
+ ],
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
+ "bin": {
24
+ "arp-tui": "dist/index.js"
25
+ },
26
+ "files": [
27
+ "dist",
28
+ "npm-shrinkwrap.json",
29
+ "README.md",
30
+ "LICENSE.md"
31
+ ],
32
+ "scripts": {
33
+ "build": "tsup",
34
+ "shrinkwrap:gen": "node scripts/generate-shrinkwrap.mjs",
35
+ "prepublishOnly": "npm run build && node scripts/generate-shrinkwrap.mjs",
36
+ "dev": "tsx src/index.tsx",
37
+ "start": "node dist/index.js",
38
+ "typecheck": "tsc --noEmit"
39
+ },
40
+ "dependencies": {
41
+ "ink": "^5.2.0",
42
+ "react": "^18.3.1",
43
+ "ws": "^8.21.0"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^22.10.0",
47
+ "@types/react": "^18.3.12",
48
+ "@types/ws": "^8.18.1",
49
+ "tsup": "^8.5.1",
50
+ "tsx": "^4.19.2",
51
+ "typescript": "^5.7.2"
52
+ }
53
+ }