-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 2.81 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "remobi",
"version": "1.0.3",
"description": "Monitor and control your coding agents from your phone. Touch controls for tmux over the web.",
"type": "module",
"bin": {
"remobi": "dist/cli.mjs"
},
"exports": {
".": {
"types": "./dist/src/index.d.mts",
"default": "./dist/src/index.mjs"
},
"./config": {
"types": "./dist/src/config.d.mts",
"default": "./dist/src/config.mjs"
},
"./types": {
"types": "./dist/src/types.d.mts"
}
},
"files": [
"dist/",
"styles/",
"src/pwa/icons/",
"README.md",
"CHANGELOG.md",
"LICENSE",
"scripts/postinstall.mjs"
],
"publishConfig": {
"provenance": true
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/connorads/remobi.git"
},
"homepage": "https://github.com/connorads/remobi",
"bugs": "https://github.com/connorads/remobi/issues",
"scripts": {
"build:overlay": "tsx scripts/build-overlay.ts",
"build:dist": "tsdown && pnpm run build:overlay",
"build": "tsx cli.ts build",
"check": "biome check .",
"check:fix": "biome check --fix .",
"lint:knip": "knip",
"lint:ox": "oxlint --import-plugin --promise-plugin",
"lint:publint": "publint",
"lint:typos": "typos",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:pw": "playwright test",
"test:pw:chromium": "playwright test --project=chromium-android",
"test:pw:webkit": "playwright test --project=webkit-iphone",
"release": "semantic-release",
"prepublishOnly": "pnpm run lint:ox && pnpm run lint:knip && pnpm run build:dist && pnpm run lint:publint",
"postinstall": "node scripts/postinstall.mjs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@happy-dom/global-registrator": "^20.6.1",
"@playwright/test": "^1.58.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.0",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.0",
"happy-dom": "^20.8.4",
"knip": "^5.85.0",
"oxlint": "^1.50.0",
"publint": "^0.3.17",
"semantic-release": "^25.0.3",
"tsdown": "^0.20.0",
"tsx": "^4.19.0",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
},
"license": "MIT",
"author": "Connor",
"keywords": [
"ttyd",
"tmux",
"terminal",
"mobile",
"overlay",
"touch",
"node",
"agents",
"claude",
"remote",
"pwa"
],
"dependencies": {
"@hono/node-server": "^1.14.0",
"@hono/node-ws": "^1.1.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/headless": "^6.0.0",
"@xterm/xterm": "^6.0.0",
"hono": "^4.7.0",
"node-pty": "^1.1.0",
"valibot": "^1.2.0",
"ws": "^8.18.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"node-pty"
]
}
}