-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.36 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "payload-auth-plugin",
"version": "0.7.6",
"type": "module",
"sideEffects": false,
"author": "Sourab Pramanik<shubpramanik241@gmail.com>",
"license": "MIT",
"homepage:": "https://github.com/authsmith/payload-auth-plugin",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/authsmith/payload-auth-plugin.git"
},
"description": "Authentication plugin for Payload CMS",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"keywords": [
"payload",
"cms",
"authsmith",
"authentication",
"payload-plugin",
"typescript",
"react",
"nextjs",
"oauth",
"oauth2.0",
"oidc",
"google",
"github",
"gitlab",
"atlassian",
"apple",
"facebook",
"discord",
"auth0",
"cognito",
"keycloak",
"microsoft",
"slack",
"passkey",
"webauthn",
"twitch"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
},
"./providers": {
"import": "./dist/esm/providers/index.js",
"types": "./dist/types/providers/index.d.ts"
},
"./client": {
"import": "./dist/esm/client/index.js",
"types": "./dist/types/client/index.d.ts"
},
"./collection": {
"import": "./dist/esm/collection/index.js",
"types": "./dist/types/collection/index.d.ts"
},
"./collection/hooks": {
"import": "./dist/esm/collection/hooks.js",
"types": "./dist/types/collection/hooks.d.ts"
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "bun run ./script/build.ts",
"format": "bun x prettier --write '**/*.{js,jsx,ts,tsx,json,md,yaml,yml}'",
"release": "bun run build && changeset publish"
},
"peerDependencies": {
"payload": "^3.0.0"
},
"devDependencies": {
"@changesets/cli": "2.27.10",
"@tsconfig/node22": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/bun": "latest",
"@types/jsonwebtoken": "^9.0.7",
"@types/js-cookie": "^3.0.6",
"cross-env": "^7.0.3",
"git-cliff": "2.7.0",
"globals": "^15.14.0",
"prettier": "3.4.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@simplewebauthn/browser": "^13.1.0",
"@simplewebauthn/server": "^13.1.0",
"jose": "6.0.8",
"js-cookie": "3.0.5",
"oauth4webapi": "^3.1.4",
"qs-esm": "7.0.2",
"uuid": "11.1.0"
}
}