-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 943 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "cursor-billing",
"version": "1.0.0",
"description": "Auto-download Cursor billing invoices and email them",
"type": "module",
"scripts": {
"start": "node src/index.mjs",
"login": "node src/index.mjs --login",
"schedule": "ln -sf \"$(pwd)/launchd/com.theodo.cursor-billing.plist\" ~/Library/LaunchAgents/ && launchctl load -w ~/Library/LaunchAgents/com.theodo.cursor-billing.plist && echo 'Scheduled: runs on the 3rd of each month at 10:00 AM'",
"unschedule": "launchctl unload ~/Library/LaunchAgents/com.theodo.cursor-billing.plist 2>/dev/null; rm -f ~/Library/LaunchAgents/com.theodo.cursor-billing.plist && echo 'Unscheduled'",
"test:schedule": "launchctl start com.theodo.cursor-billing && sleep 30 && echo '--- stdout ---' && cat stdout.log && echo '--- stderr ---' && cat stderr.log"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"playwright": "^1.58.2"
}
}