-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.3 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "github-webhook-bridge",
"version": "2.0.0",
"description": "Receive and parse GitHub Webhooks and send messages to Discord, providing a more flexible notification system with enhanced integration between GitHub and Discord.",
"homepage": "https://github.com/book000/github-webhook-bridge",
"bugs": {
"url": "https://github.com/book000/github-webhook-bridge/issues"
},
"license": "MIT",
"author": "Tomachi [ICHIGO] <tomachi@tomacheese.com>",
"private": true,
"main": "index.js",
"repository": {
"url": "git@github.com:book000/github-webhook-bridge.git",
"type": "git"
},
"scripts": {
"start": "tsx ./src/main.ts",
"dev": "tsx watch ./src/main.ts",
"vercel": "vercel dev",
"build": "tsc -p tsconfig.json",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit",
"preinstall": "npx only-allow pnpm",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"fix": "run-z fix:prettier,fix:eslint"
},
"devDependencies": {
"@book000/eslint-config": "1.7.83",
"@book000/node-utils": "1.13.330",
"@fastify/cors": "10.0.1",
"@octokit/webhooks-examples": "7.6.1",
"@octokit/webhooks-types": "7.6.1",
"@types/diff": "6.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.8.6",
"@vercel/node": "3.2.24",
"axios": "1.7.7",
"diff": "7.0.0",
"eslint": "9.14.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.12.0",
"eslint-plugin-promise": "7.1.0",
"fastify": "5.1.0",
"fastify-raw-body": "5.0.0",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"prettier": "3.3.3",
"run-z": "2.1.0",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.6.3"
},
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testMatch": [
"**/*.test.ts"
],
"moduleFileExtensions": [
"js",
"ts"
],
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"packageManager": "pnpm@9.12.3"
}