shell-mirror
Version:
Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.
77 lines (76 loc) • 2.01 kB
JSON
{
"name": "shell-mirror",
"version": "1.5.124",
"description": "Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.",
"main": "server.js",
"bin": {
"shell-mirror": "./bin/shell-mirror"
},
"preferGlobal": true,
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "node scripts/build.js",
"build:production": "node scripts/production-build.js",
"start": "node server.js",
"dev": "node server.js",
"pm2:start": "pm2 start ecosystem.config.js --env production",
"pm2:stop": "pm2 stop shell-mirror",
"pm2:restart": "pm2 restart shell-mirror",
"pm2:delete": "pm2 delete shell-mirror",
"pm2:logs": "pm2 logs shell-mirror",
"deploy": "node deploy-php.cjs",
"deploy:nodejs": "node deploy.cjs",
"test": "node test-local-setup.js",
"test:e2e": "node run_e2e_test.js",
"test:local": "echo 'Starting local test environment...' && node test-local-setup.js",
"postinstall": "node bin/shell-mirror install"
},
"keywords": [
"shell",
"remote",
"mobile coding",
"claude code",
"gemini cli",
"ssh",
"web shell",
"mac shell",
"mobile shell",
"ai coding",
"google oauth"
],
"author": "Shell Mirror Contributors",
"license": "MIT",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/karmalsky/shell-mirror.git"
},
"homepage": "https://shellmirror.app",
"bugs": {
"url": "https://github.com/karmalsky/shell-mirror/issues"
},
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"express": "^5.1.0",
"express-session": "^1.18.1",
"inquirer": "^9.2.12",
"node-pty": "^1.0.0",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"ws": "^8.18.2",
"uuid": "^8.3.2"
},
"files": [
"bin/",
"lib/",
"mac-agent/",
"public/",
"server.js",
"auth.js",
"README.md",
"LICENSE"
]
}