whipdesk 0.0.8

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.
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "WhipDesk — Remote control",
3
+ "short_name": "WhipDesk",
4
+ "description": "Control your desktop and get AI-status alerts from your phone.",
5
+ "start_url": "./",
6
+ "scope": "./",
7
+ "display": "standalone",
8
+ "orientation": "any",
9
+ "background_color": "#0b0e14",
10
+ "theme_color": "#5b27d6",
11
+ "icons": [
12
+ { "src": "android-chrome-192x192.png", "sizes": "192x192", "type": "image/png", "purpose": "any" },
13
+ { "src": "android-chrome-512x512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" },
14
+ { "src": "icon.svg", "sizes": "any", "type": "image/svg+xml", "purpose": "any" }
15
+ ]
16
+ }
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "whipdesk",
3
+ "version": "0.0.8",
4
+ "type": "module",
5
+ "description": "WhipDesk desktop host: screen capture, input injection, notification hub, and the HTTP/WebSocket server that serves the mobile client.",
6
+ "license": "AGPL-3.0",
7
+ "homepage": "https://github.com/BinaryBananaLLC/WhipDesk#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/BinaryBananaLLC/WhipDesk.git",
11
+ "directory": "apps/desktop-agent"
12
+ },
13
+ "bin": {
14
+ "whipdesk": "dist/agent.cjs"
15
+ },
16
+ "files": [
17
+ "dist/agent.cjs",
18
+ "dist/mobile-web"
19
+ ],
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "provenance": true
26
+ },
27
+ "scripts": {
28
+ "start": "tsx src/index.ts",
29
+ "dev": "tsx watch src/index.ts",
30
+ "typecheck": "tsc --noEmit",
31
+ "test": "tsx --test src/security/pin.test.ts src/monitor/state.test.ts",
32
+ "build:bundle": "node scripts/build-bundle.mjs",
33
+ "build:sea": "node scripts/build-sea.mjs",
34
+ "prepublishOnly": "node scripts/build-bundle.mjs"
35
+ },
36
+ "dependencies": {
37
+ "@whipdesk/protocol": "*",
38
+ "express": "^4.21.2",
39
+ "ffmpeg-static": "^5.3.0",
40
+ "qrcode-terminal": "^0.12.0",
41
+ "screenshot-desktop": "^1.15.1",
42
+ "ws": "^8.18.0"
43
+ },
44
+ "optionalDependencies": {
45
+ "@nut-tree-fork/nut-js": "^4.2.0",
46
+ "sharp": "^0.33.5",
47
+ "werift": "^0.20.1"
48
+ },
49
+ "devDependencies": {
50
+ "@types/express": "^4.17.21",
51
+ "@types/node": "^22.9.0",
52
+ "@types/qrcode-terminal": "^0.12.2",
53
+ "@types/ws": "^8.5.12",
54
+ "esbuild": "^0.25.0",
55
+ "postject": "^1.0.0-alpha.6",
56
+ "tsx": "^4.19.2",
57
+ "typescript": "^5.6.3"
58
+ }
59
+ }