@yul-labs/agent-relay 0.1.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,83 @@
1
+ {
2
+ "name": "@yul-labs/agent-relay",
3
+ "version": "0.1.1",
4
+ "description": "Vendor-agnostic LLM coding agent session orchestrator (Claude, Codex, ...)",
5
+ "type": "module",
6
+ "packageManager": "pnpm@10.25.0",
7
+ "bin": {
8
+ "agent-relay": "dist/cli.js"
9
+ },
10
+ "main": "dist/index.js",
11
+ "module": "dist/index.js",
12
+ "types": "dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.js"
17
+ },
18
+ "./package.json": "./package.json"
19
+ },
20
+ "files": [
21
+ "dist",
22
+ "README.md",
23
+ "LICENSE",
24
+ "agent-relay.config.example.json"
25
+ ],
26
+ "engines": {
27
+ "node": ">=18.19"
28
+ },
29
+ "os": [
30
+ "darwin",
31
+ "linux"
32
+ ],
33
+ "scripts": {
34
+ "dev": "tsx src/cli.ts",
35
+ "build": "tsup",
36
+ "clean": "rm -rf dist",
37
+ "typecheck": "tsc -p tsconfig.json --noEmit",
38
+ "test": "vitest run",
39
+ "test:watch": "vitest",
40
+ "start": "node dist/cli.js",
41
+ "prepublishOnly": "pnpm run typecheck && pnpm run test && pnpm run build"
42
+ },
43
+ "keywords": [
44
+ "llm",
45
+ "agent",
46
+ "orchestrator",
47
+ "claude",
48
+ "codex",
49
+ "codex-cli",
50
+ "claude-code",
51
+ "cli",
52
+ "automation",
53
+ "session"
54
+ ],
55
+ "license": "MIT",
56
+ "repository": {
57
+ "type": "git",
58
+ "url": "git+https://github.com/YulHeon/agent-relay.git"
59
+ },
60
+ "bugs": {
61
+ "url": "https://github.com/YulHeon/agent-relay/issues"
62
+ },
63
+ "homepage": "https://github.com/YulHeon/agent-relay#readme",
64
+ "dependencies": {
65
+ "commander": "^12.1.0",
66
+ "execa": "^9.5.1",
67
+ "node-pty": "^1.1.0",
68
+ "zod": "^3.23.8"
69
+ },
70
+ "devDependencies": {
71
+ "@types/node": "^22.7.0",
72
+ "tsup": "^8.5.1",
73
+ "tsx": "^4.19.0",
74
+ "typescript": "^5.6.0",
75
+ "vitest": "^2.1.0"
76
+ },
77
+ "pnpm": {
78
+ "onlyBuiltDependencies": [
79
+ "node-pty",
80
+ "esbuild"
81
+ ]
82
+ }
83
+ }