-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
49 lines (49 loc) · 1.12 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
{
"$schema": "https://json.schemastore.org/package",
"name": "vercel-github-oauth-proxy",
"version": "1.2.6",
"description": "Protect a static website hosted on Vercel behind GitHub authentication.",
"keywords": [
"vercel",
"github",
"oauth",
"proxy",
"static",
"website",
"lambda",
"functions"
],
"repository": "github:n4bb12/vercel-github-oauth-proxy",
"license": "ISC",
"author": "Abraham Schilling <AbrahamSchilling@gmail.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"prepack": "tsc",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@fastify/cookie": "^9.0.4",
"@fastify/static": "^6.11.2",
"axios": "^1.5.0",
"fastify": "^4.23.2",
"nanoid": "^3.3.6",
"ow": "^0.26.0"
},
"devDependencies": {
"@types/node": "^18",
"@vercel/node": "^3.0.5",
"prettier": "^3.0.3",
"release-it": "^16.1.5",
"typescript": "^5.2.2",
"vercel": "^32.2.5"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}