-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "hacs-bot",
"version": "1.0.0",
"description": "Bot for the HACS org on GitHub",
"main": "dist/worker.js",
"scripts": {
"build": "webpack",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}'"
},
"author": "author",
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260131.0",
"@octokit/webhooks-types": "^7.6.1",
"@sentry/types": "10.39.0",
"@slack/types": "^2.20.0",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.55.0",
"discord.js": "^14.25.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.8.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1",
"wrangler": "^4.67.0"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/webhooks": "^14.2.0",
"@sentry/cloudflare": "10.39.0",
"octokit": "^5.0.5"
}
}