visual-remote 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,61 @@
1
+ {
2
+ "name": "visual-remote",
3
+ "version": "0.1.0",
4
+ "description": "Visual bridge from a running web UI to Codex in its Git worktree",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/elicie/visual-remote.git"
9
+ },
10
+ "homepage": "https://github.com/elicie/visual-remote#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/elicie/visual-remote/issues"
13
+ },
14
+ "files": [
15
+ "apps/cli/dist/index.js",
16
+ "packages/overlay/dist/client.js",
17
+ "packages/overlay/dist/viewer.js"
18
+ ],
19
+ "bin": {
20
+ "visual": "./apps/cli/dist/index.js"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public",
24
+ "registry": "https://registry.npmjs.org"
25
+ },
26
+ "engines": {
27
+ "node": ">=24"
28
+ },
29
+ "dependencies": {
30
+ "commander": "^15.0.0",
31
+ "http-proxy": "^1.18.1",
32
+ "ws": "^8.21.1",
33
+ "yaml": "^2.9.0",
34
+ "zod": "^4.4.3"
35
+ },
36
+ "devDependencies": {
37
+ "@playwright/test": "^1.62.1",
38
+ "@types/http-proxy": "^1.17.17",
39
+ "@types/node": "^26.1.2",
40
+ "@types/ws": "^8.18.1",
41
+ "esbuild": "^0.28.1",
42
+ "tsx": "^4.23.1",
43
+ "typescript": "^7.0.2",
44
+ "vitest": "^4.1.10",
45
+ "@visual-remote/bridge-core": "0.1.0",
46
+ "@visual-remote/gateway": "0.1.0",
47
+ "@visual-remote/cli": "0.1.0",
48
+ "@visual-remote/overlay": "0.1.0",
49
+ "@visual-remote/protocol": "0.1.0"
50
+ },
51
+ "scripts": {
52
+ "build": "corepack pnpm run build:overlay && corepack pnpm run build:server",
53
+ "build:overlay": "corepack pnpm --filter @visual-remote/overlay build",
54
+ "build:server": "corepack pnpm --filter @visual-remote/cli build",
55
+ "dev": "corepack pnpm run build:overlay && tsx apps/cli/src/index.ts",
56
+ "test": "vitest run",
57
+ "test:e2e": "corepack pnpm run build:overlay && corepack pnpm exec playwright test --config tests/e2e/playwright.config.ts",
58
+ "test:watch": "vitest",
59
+ "typecheck": "corepack pnpm -r --if-present typecheck && tsc --noEmit -p tsconfig.tests.json"
60
+ }
61
+ }