forked from sergiodxa/remix-auth-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 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
{
"name": "remix-auth-oidc",
"version": "1.0.0",
"description": "OpenIDConnect authentication strategy for remix-auth",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint --ext .ts,.tsx src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matt-l-w/remix-auth-oidc.git"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"oidc",
"openidconnect",
"oauth"
],
"author": "Matt Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/matt-l-w/remix-auth-oidc/issues"
},
"homepage": "https://github.com/matt-l-w/remix-auth-oidc#readme",
"files": [
"build",
"package.json",
"README.md"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-xo": "^0.40.0",
"typescript": "^4.6.2"
},
"dependencies": {
"remix-auth-oauth2": "^1.2.0"
}
}