-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 771 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "auto-invoice",
"version": "1.0.0",
"description": "This is a Cloudflare Worker written in JavaScript that automates the process of sending monthly invoices to clients. It is designed to be triggered on a schedule, generating personalized PDF invoices and sending them via email.",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test-pdf": "node test-pdf.js",
"secret:put": "wrangler secret put",
"secret:list": "wrangler secret list",
"secret:delete": "wrangler secret delete",
"deploy": "wrangler deploy",
"dev": "wrangler dev"
},
"author": "Santiago Botto <me@sbotto.com>",
"license": "AGPL-3.0",
"type": "module",
"dependencies": {
"pdf-lib": "^1.17.1"
}
}