UNPKG

@iosifnicolae22/remote-shell

Version:

Run any terminal application and control it remotely from your mobile device. Perfect for maxing out vibe coding sessions with Claude Code on the go!

73 lines (72 loc) 2.13 kB
{ "name": "@iosifnicolae22/remote-shell", "version": "1.1.6", "description": "Run any terminal application and control it remotely from your mobile device. Perfect for maxing out vibe coding sessions with Claude Code on the go!", "private": false, "publishConfig": { "access": "public" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "LICENSE" ], "bin": { "remote-terminal": "dist/index.js", "remote-shell": "dist/index.js", "remote-sh": "dist/index.js" }, "scripts": { "build": "tsc", "build:prod": "tsc && node minify.js", "minify": "node minify.js", "start": "node dist/index.js", "start:claude": "node dist/index.js claude", "start:bash": "node dist/index.js bash", "dev": "tsx src/index.ts", "dev:claude": "tsx src/index.ts claude", "dev:config": "tsx src/index.ts config", "dev:bash": "tsx src/index.ts bash", "test": "echo \"Error: no test specified\" && exit 1", "prepublish": "npm run build:prod", "prepack": "npm run build:prod", "build:cli-prod": "npm run build:prod", "start:prod": "node dist/index.js", "start:prod:config": "node dist/index.js config", "publish:npm": "npm publish --access public", "version:patch": "npm version patch", "version:minor": "npm version minor", "version:major": "npm version major", "release:patch": "npm run version:patch && npm run publish:npm", "release:minor": "npm run version:minor && npm run publish:npm", "release:major": "npm run version:major && npm run publish:npm" }, "keywords": [ "terminal", "mobile", "remote", "control", "claude", "bash", "shell", "cli", "remote-shell" ], "author": "bringes.io", "homepage": "https://remote-shell.bringes.io", "license": "PRIVATE", "dependencies": { "node-pty": "^1.0.0", "ws": "^8.17.0" }, "devDependencies": { "@types/node": "^20.14.0", "@types/terser": "^3.12.0", "@types/ws": "^8.5.10", "terser": "^5.43.1", "tsx": "^4.15.0", "typescript": "^5.4.5" } }