-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "@skylab-kulubu/inscribed-auth",
"version": "0.3.0",
"description": "Skylab's opt-in NextAuth + Keycloak adapter (auth + service token) for the inscribed CMS.",
"type": "module",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./signin": {
"types": "./dist/signin.d.ts",
"import": "./dist/signin.js"
},
"./config": {
"types": "./dist/config.d.ts",
"import": "./dist/config.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"inscribed": "^1.1.4",
"next": ">=14",
"next-auth": "^4",
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"inscribed": "^1.1.4",
"next": ">=14",
"next-auth": "^4",
"react": ">=18",
"react-dom": ">=18",
"tsup": "^8",
"typescript": "^5"
},
"publishConfig": {
"access": "public"
}
}