-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "@justprove/mobilevc",
"version": "0.1.18",
"description": "Claude Code mobile workspace launcher with precompiled MobileVC backend binaries.",
"license": "MIT",
"type": "commonjs",
"bin": {
"mobilevc": "bin/mobilevc.js"
},
"files": [
"bin/",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node ./bin/mobilevc.js",
"test:launcher": "node --test test/mobilevc-launcher.test.js",
"install:cmd": "npm install -g .",
"remove:cmd": "npm uninstall -g mobilevc",
"link:cmd": "npm link",
"unlink:cmd": "npm unlink -g mobilevc",
"sync:web": "node ./scripts/sync-embedded-web.js",
"build:binaries": "node ./scripts/build-npm-binaries.js"
},
"dependencies": {
"qrcode-terminal": "^0.12.0"
},
"optionalDependencies": {
"@justprove/mobilevc-server-darwin-arm64": "0.1.18",
"@justprove/mobilevc-server-darwin-x64": "0.1.18",
"@justprove/mobilevc-server-linux-arm64": "0.1.18",
"@justprove/mobilevc-server-linux-x64": "0.1.18",
"@justprove/mobilevc-server-win32-x64": "0.1.18"
}
}