pomodoro-beep
Version:
Node.js tool to provide pomodoro-like timer with beep sound playback that helps controlling AI coding agent reporting frequency.
43 lines • 1.05 kB
JSON
{
"version": "1.1.2",
"name": "pomodoro-beep",
"bin": {
"pomodoro-beep": "./bundle/bundle.js"
},
"scripts": {
"build": "tsc && npx -y npx rollup -c",
"prod": "npm run build && node ./bundle/bundle.js",
"start": "tsc && node ./dist/index.js",
"test": "jest"
},
"description": "Node.js tool to provide pomodoro-like timer with beep sound playback that helps controlling AI coding agent reporting frequency.",
"author": {
"name": "sator-imaging",
"url": "https://x.com/sator_imaging"
},
"homepage": "https://x.com/sator_imaging",
"repository": {
"type": "git",
"url": "https://github.com/sator-imaging/node-pomodoro"
},
"license": "MIT",
"keywords": [
"pomodoro",
"timer",
"beep",
"ai",
"coding",
"agent"
],
"type": "module",
"dependencies": {
"play-sound": "^1.1.6",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^24.0.13",
"@types/play-sound": "^1.1.2",
"@types/yargs": "^17.0.33",
"rollup-plugin-terser": "^7.0.2"
}
}