-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 1023 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "template-worker-router",
"version": "0.0.0",
"private": true,
"scripts": {
"deploy": "wrangler deploy worker/index.ts",
"dev": "wrangler dev worker/index.ts --local true",
"dev:db:init": "wrangler d1 execute D1_DATABASE --file worker/sql/init.sql --local",
"dev:db:drop": "wrangler d1 execute D1_DATABASE --file worker/sql/drop.sql --local",
"type-check": "tsc --noEmit",
"commit": "git commit . -m \"$(git diff | sgpt --model gpt-4o --code 'Write concise, informative commit messages: Start with a summary in imperative mood, explain the 'why' behind changes, keep the summary under 50 characters, use bullet points for multiple changes, avoid using the word refactor, instead explain what was done, and reference related issues or tickets. What you write will be passed to git commit -m \"[message]\"')\""
},
"dependencies": {
"@vlad-yakovlev/telegram-md": "*",
"itty-router": "*"
},
"devDependencies": {
"@cloudflare/workers-types": "*",
"typescript": "*",
"wrangler": "*"
}
}