tinyagent
Version:
Connect your local shell to any device - access your dev environment from anywhere
49 lines (48 loc) • 1.13 kB
JSON
{
"name": "tinyagent",
"version": "1.1.2",
"description": "Connect your local shell to any device - access your dev environment from anywhere",
"keywords": ["remote", "shell", "terminal", "development", "mobile", "devtools"],
"homepage": "https://tinyagent.app",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/tinyagent.git"
},
"bin": {
"tinyagent": "./dist/cli.js"
},
"scripts": {
"dev": "tsx src/cli.ts",
"build": "tsc && chmod +x dist/cli.js",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"dotenv": "^16.0.0",
"localtunnel": "^2.0.2",
"node-pty": "^1.0.0",
"ora": "^5.4.1",
"qrcode-terminal": "^0.12.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/localtunnel": "^2.0.0",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}