-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 703 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 703 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "packer-bot",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@10.13.1",
"scripts": {
"lint": "eslint src && prettier --check .",
"build": "tsc",
"publish": "pnpm build && wrangler deploy",
"dev": "wrangler dev",
"format": "prettier --write ."
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250719.0",
"eslint": "^8.57.1",
"eslint-config-neon": "^0.1.62",
"lodash.merge": "^4.6.2",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"wrangler": "4.25.0"
},
"dependencies": {
"@octokit/webhooks": "^14.1.1",
"octokit": "^5.0.3",
"pino": "^9.7.0"
}
}