{"library":"node-notifier-cli","install":[{"cmd":"npm install node-notifier-cli","imports":["notify -t 'Task Complete' -m 'Your build finished successfully!'","npx -p node-notifier-cli notify -t 'Reminder' -m 'Don\\'t forget that meeting at 3 PM!' -s Glass","import { spawn } from 'child_process';\n\nconst title = 'System Alert';\nconst message = 'Disk space low! Cleanup recommended.';\nconst icon = 'https://raw.githubusercontent.com/mikaelbr/node-notifier/master/example/coulson.jpg';\n\nconst child = spawn('notify', ['-t', title, '-m', message, '--icon', icon, '-s', 'Basso']);\n\nchild.on('error', (err) => {\n  console.error('Failed to start notify process:', err.message);\n});\n\nchild.on('close', (code) => {\n  if (code !== 0) {\n    console.warn(`notify process exited with code ${code}`);\n  }\n});"]},{"cmd":"yarn add node-notifier-cli","imports":[]},{"cmd":"pnpm add node-notifier-cli","imports":[]}]}