-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.3 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
50
51
52
{
"name": "payload-plugin-oauth2",
"version": "0.1.0",
"license": "MIT",
"main": "cjs/index.ts",
"types": "cjs/index.d.ts",
"scripts": {
"clean": "rm -rf cjs",
"build": "tsc",
"test": "echo 'no tests'",
"esbuild": "esbuild ./src/index.ts --bundle --outdir=cjs --format=cjs --target=node18 --platform=node --external:react --external:axios --external:passport --external:payload --external:express-session"
},
"exports": {
".": {
"types": "./cjs/index.d.ts",
"default": "./cjs/index.js"
},
"./cjs/*": "./cjs/*"
},
"files": [
"cjs"
],
"dependencies": {
"@bothrs/util": "^3",
"@types/express-session": "^1",
"@types/passport": "^1",
"@types/passport-oauth2": "^1",
"axios": "^1",
"express-session": "^1",
"passport-oauth2": "^1"
},
"devDependencies": {
"passport": "^0.6",
"payload": "^1",
"react": "^18",
"typescript": "^4"
},
"peerDependencies": {
"passport": "^0.6",
"payload": "^1",
"react": "^18"
},
"author": "Thomas Ghysels <info@thomasg.be>",
"homepage": "https://github.com/thgh/payload-plugin-oauth2",
"bugs": {
"url": "https://github.com/thgh/payload-plugin-oauth2/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thgh/payload-plugin-oauth2"
}
}