-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.23 KB
/
package.json
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
46
{
"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.20241004.0",
"@octokit/webhooks-types": "^7.6.1",
"@sentry/types": "8.33.1",
"@types/node": "^22.8.1",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"discord.js": "^14.16.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"wrangler": "^3.83.0"
},
"dependencies": {
"@octokit/auth-app": "^7.1.1",
"@octokit/webhooks": "^13.3.0",
"@sentry/browser": "8.33.1",
"@sentry/core": "8.33.1",
"@sentry/utils": "8.33.1",
"octokit": "^4.0.2"
}
}