claude-code-remote-remake/package.json

68 lines
1.6 KiB
JSON
Raw Normal View History

{
"name": "taskping",
"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 taskping-config.js",
"daemon:start": "node taskping.js daemon start",
"daemon:stop": "node taskping.js daemon stop",
"daemon:status": "node taskping.js daemon status",
"relay:pty": "node start-relay-pty.js",
"relay:start": "INJECTION_MODE=pty node src/relay/relay-pty.js"
},
"keywords": [
"claude-code",
"notification",
"desktop-notification",
"hooks",
"productivity",
"development-tools",
"task-management",
"claude",
"ai-assistant"
],
"author": "TaskPing Team",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"repository": {
"type": "git",
"url": "https://github.com/TaskPing/TaskPing.git"
},
"bugs": {
"url": "https://github.com/TaskPing/TaskPing/issues"
},
"homepage": "https://github.com/TaskPing/TaskPing#readme",
"dependencies": {
"dotenv": "^17.2.1",
"execa": "^9.6.0",
"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"
]
}