-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 916 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 916 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
31
32
{
"name": "github-event-listener",
"version": "0.1.0",
"description": "GitHub organization webhook listener that publishes events to RabbitMQ",
"type": "module",
"scripts": {
"dev": "bun run --watch src/index.ts",
"start": "bun run src/index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --incremental",
"format:check": "eslint --no-warn-ignored .",
"format:fix": "eslint --no-warn-ignored --fix ."
},
"dependencies": {
"@octokit/webhooks": "14.2.0",
"amqplib": "1.0.3",
"cloudevents": "10.0.0",
"zod": "4.3.6"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@stylistic/eslint-plugin": "5.10.0",
"@types/amqplib": "0.10.8",
"@types/bun": "latest",
"eslint": "10.2.1",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0"
}
}