claude-code-remote-remake/package.json

73 lines
1.9 KiB
JSON

{
"name": "claude-code-remote",
"version": "1.0.0",
"description": "Claude Code Smart Notification System - Send desktop notifications when Claude completes tasks or needs input",
"main": "hook-notify.js",
"scripts": {
"config": "node claude-remote-config.js",
"daemon:start": "node claude-remote.js daemon start",
"daemon:stop": "node claude-remote.js daemon stop",
"daemon:status": "node claude-remote.js daemon status",
"relay:pty": "node start-relay-pty.js",
"relay:start": "INJECTION_MODE=pty node src/relay/relay-pty.js",
"telegram": "node start-telegram-webhook.js",
"line": "node start-line-webhook.js",
"webhooks": "node start-all-webhooks.js"
},
"keywords": [
"claude-code",
"notification",
"desktop-notification",
"hooks",
"productivity",
"development-tools",
"task-management",
"claude",
"ai-assistant"
],
"author": "Claude-Code-Remote Team",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "https://github.com/Claude-Code-Remote/Claude-Code-Remote.git"
},
"bugs": {
"url": "https://github.com/Claude-Code-Remote/Claude-Code-Remote/issues"
},
"homepage": "https://github.com/Claude-Code-Remote/Claude-Code-Remote#readme",
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^17.2.1",
"execa": "^9.6.0",
"express": "^4.18.2",
"imapflow": "^1.0.191",
"mailparser": "^3.7.4",
"node-imap": "^0.9.6",
"node-pty": "^1.0.0",
"nodemailer": "^7.0.5",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"uuid": "^11.1.0"
},
"files": [
"hook-notify.js",
"config-tool.js",
"install.js",
"config.json",
"i18n.json",
"claude-hooks.json",
"sounds/",
"README.md",
"QUICKSTART.md",
"LICENSE"
]
}