-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 KB
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 <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": "^10.0.9",
"@octokit/request-error": "^7.1.0",
"@octokit/types": "^16.0.0",
"@octokit/webhooks-methods": "^6.0.0",
"@vercel/edge-config": "1.4.3",
"undici": "^8.3.0"
},
"devDependencies": {
"@octokit/webhooks-types": "^7.6.1",
"@types/estree": "^1.0.9",
"@vercel/nft": "patch:@vercel/nft@npm%3A1.5.0#~/.yarn/patches/@vercel-nft-npm-1.5.0-6b2b568205.patch",
"@vercel/node": "^5.8.3",
"acorn": "^8.16.0",
"eslint": "10.4.0",
"eslint-config-neon": "^0.5.0",
"eslint-formatter-pretty": "^7.1.0",
"lodash.merge": "^4.6.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "6.0.3",
"typescript-eslint": "^8.59.4",
"vercel": "^54.3.0"
},
"packageManager": "yarn@4.15.0",
"resolutions": {
"@vercel/nft@npm:1.5.0": "patch:@vercel/nft@npm%3A1.5.0#~/.yarn/patches/@vercel-nft-npm-1.5.0-6b2b568205.patch"
}
}