@gzl10/nexus-plugin-google-auth 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +102 -0
- package/dist/index.d.ts +205 -0
- package/dist/index.js +537 -0
- package/dist/index.js.map +1 -0
- package/dist/serve.d.ts +2 -0
- package/dist/serve.js +537 -0
- package/dist/serve.js.map +1 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gzl10/nexus-plugin-google-auth",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Google OIDC authentication provider plugin for Nexus",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"nexus-plugin-google-auth": "./dist/serve.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"peerDependencies": {
|
|
22
|
+
"@gzl10/nexus-backend": ">=0.13.0",
|
|
23
|
+
"@gzl10/nexus-sdk": ">=0.13.0"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@gzl10/nexus-backend": "latest",
|
|
27
|
+
"@gzl10/nexus-sdk": "latest",
|
|
28
|
+
"concurrently": "^9.1.2",
|
|
29
|
+
"cross-env": "^10.1.0",
|
|
30
|
+
"tsup": "^8.0.0",
|
|
31
|
+
"tsx": "^4.19.0",
|
|
32
|
+
"typescript": "^5.7.0",
|
|
33
|
+
"vitest": "^4.0.18"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"nexus",
|
|
37
|
+
"plugin",
|
|
38
|
+
"google",
|
|
39
|
+
"oidc",
|
|
40
|
+
"authentication",
|
|
41
|
+
"oauth"
|
|
42
|
+
],
|
|
43
|
+
"author": "G10 Labs",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"scripts": {
|
|
46
|
+
"dev": "tsx watch src/serve.ts",
|
|
47
|
+
"dev:tunnel": "concurrently -n backend,tunnel -c blue,magenta \"cross-env BACKEND_URL=https://nexus-plugin-google-auth.tunnel.gzl10.com TRUST_PROXY=true tsx watch src/serve.ts\" \"frpc -c frpc.toml\"",
|
|
48
|
+
"build": "tsup",
|
|
49
|
+
"serve": "tsup && node dist/serve.js",
|
|
50
|
+
"test": "vitest run",
|
|
51
|
+
"test:watch": "vitest",
|
|
52
|
+
"typecheck": "tsc --noEmit",
|
|
53
|
+
"clean": "rm -rf dist"
|
|
54
|
+
}
|
|
55
|
+
}
|