-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 978 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 978 Bytes
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
{
"name": "keystatic-proxy-client",
"version": "0.2.3",
"description": "Site-side wrapper that routes Keystatic GitHub OAuth through a shared external auth proxy",
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"src",
"README.md"
],
"scripts": {
"test": "node --test src/*.test.js"
},
"packageManager": "pnpm@10.28.1",
"engines": {
"node": ">=20"
},
"peerDependencies": {
"@keystatic/next": ">=5",
"next": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fntechgit/keystatic-proxy-client.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"keystatic",
"github",
"oauth",
"proxy",
"cms"
],
"author": "FNTech",
"license": "MIT",
"dependencies": {
"cookie": "^1.1.1",
"jose": "^6.2.3"
}
}