@frod.io/bridge 0.7.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/README.md +269 -0
- package/dist/cli.js +8257 -0
- package/package.json +43 -0
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@frod.io/bridge",
|
|
3
|
+
"version": "0.7.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Your computer is a desk: hosts a Frod.io agent's sessions with your own Claude Code, Codex or Grok Build. Installs and updates itself.",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"homepage": "https://frod.io",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/awafeek/agentic-engineering.git",
|
|
11
|
+
"directory": "apps/bridge"
|
|
12
|
+
},
|
|
13
|
+
"bin": {
|
|
14
|
+
"frod-bridge": "dist/cli.js"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=20"
|
|
22
|
+
},
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "node scripts/bundle.mjs && tsc --noEmit",
|
|
28
|
+
"bundle": "node scripts/bundle.mjs",
|
|
29
|
+
"lint": "eslint src",
|
|
30
|
+
"test": "vitest run --passWithNoTests",
|
|
31
|
+
"type-check": "tsc --noEmit",
|
|
32
|
+
"pack:check": "npm pack --dry-run"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@types/node": "^22.0.0",
|
|
36
|
+
"@types/ws": "^8.18.1",
|
|
37
|
+
"esbuild": "^0.27.3",
|
|
38
|
+
"tsx": "^4.19.0",
|
|
39
|
+
"typescript": "^5.7.0",
|
|
40
|
+
"vitest": "^4.0.18",
|
|
41
|
+
"ws": "^8.21.3"
|
|
42
|
+
}
|
|
43
|
+
}
|