-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.78 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
{
"name": "gh-discord-middleware",
"version": "0.2.0",
"description": "A middleware service to split a github webhook to multiple discord webhooks",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && tsc --project tsconfig.middleware.json",
"build:output": "yarn clean && yarn build && node dist/build/build.js",
"clean": "rimraf dist .vercel/output",
"lint": "prettier --check . && eslint --format=pretty src && tsc --noEmit",
"format": "prettier --write . && eslint --format=pretty src --fix",
"fmt": "yarn format"
},
"contributors": [
"ckohen <chaikohen@gmail.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ckohen/gh-discord-middleware.git"
},
"bugs": {
"url": "https://github.com/ckohen/gh-discord-middleware/issues"
},
"dependencies": {
"@octokit/request": "^9.1.3",
"@octokit/request-error": "^6.1.4",
"@octokit/types": "^13.5.0",
"@octokit/webhooks-methods": "^5.1.0",
"@vercel/edge-config": "1.3.0",
"undici": "^6.19.8"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.5.1",
"@types/estree": "^1.0.5",
"@vercel/nft": "patch:@vercel/nft@npm%3A0.27.4#~/.yarn/patches/@vercel-nft-npm-0.27.4-424ab59eb7.patch",
"@vercel/node": "^3.2.14",
"acorn": "^8.12.1",
"eslint": "9.13.0",
"eslint-config-neon": "^0.2.0",
"eslint-formatter-pretty": "^6.0.1",
"lodash.merge": "^4.6.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "5.6.3",
"typescript-eslint": "^8.5.0",
"vercel": "^37.4.2"
},
"packageManager": "yarn@4.5.1",
"resolutions": {
"@vercel/nft@0.26.4": "patch:@vercel/nft@npm:0.26.4#.yarn/patches/@vercel-nft-npm-0.26.4-f2da9ecaee.patch",
"@vercel/nft@npm:0.27.3": "patch:@vercel/nft@npm%3A0.27.4#~/.yarn/patches/@vercel-nft-npm-0.27.4-424ab59eb7.patch"
}
}