-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"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 <[email protected]>"
],
"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.4",
"@octokit/request-error": "^6.1.6",
"@octokit/types": "^13.6.2",
"@octokit/webhooks-methods": "^5.1.0",
"@vercel/edge-config": "1.4.0",
"undici": "^7.2.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.6.1",
"@types/estree": "^1.0.6",
"@vercel/nft": "patch:@vercel/nft@npm%3A0.27.10#~/.yarn/patches/@vercel-nft-npm-0.27.10-0a569de484.patch",
"@vercel/node": "^5.0.0",
"acorn": "^8.14.0",
"eslint": "9.17.0",
"eslint-config-neon": "^0.2.4",
"eslint-formatter-pretty": "^6.0.1",
"lodash.merge": "^4.6.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.19.0",
"vercel": "^39.2.2"
},
"packageManager": "[email protected]",
"resolutions": {
"@vercel/nft@npm:0.27.3": "patch:@vercel/nft@npm%3A0.27.10#~/.yarn/patches/@vercel-nft-npm-0.27.10-0a569de484.patch"
}
}