-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.22 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
55
{
"name": "better-auth-scjwt",
"version": "0.0.1",
"description": "An plugin for better-auth to implement Session-Centric JWT (CSJWT)",
"keywords": [
"better-auth",
"plugin",
"session-centric-jwt",
"csjwt"
],
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./dist/client.d.mts",
"import": "./dist/client.mjs"
}
},
"scripts": {
"build": "tsdown",
"test": "bun test test",
"prepublishOnly": "bun run build"
},
"author": "dark1zinn",
"repository": {
"type": "git",
"url": "git+https://github.com/dark1zinn/better-auth-scjwt.git"
},
"bugs": {
"url": "https://github.com/dark1zinn/better-auth-scjwt/issues"
},
"homepage": "https://github.com/dark1zinn/better-auth-scjwt#readme",
"license": "MIT",
"peerDependencies": {
"better-auth": "^1.6.14",
"jose": "^5.0.0"
},
"devDependencies": {
"@types/bun": "latest",
"better-auth": "^1.6.14",
"jose": "^5.0.0",
"tsdown": "^0.22.2",
"typescript": "^6.0.3"
}
}