generated from sergiodxa/remix-auth-strategy-template
-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
88 lines (88 loc) · 2.04 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
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
{
"name": "remix-auth-oauth2",
"version": "2.4.0",
"description": "A strategy to use and implement OAuth2 framework for authentication with federated services like Google, Facebook, GitHub, etc.",
"license": "MIT",
"funding": [
"https://github.com/sponsors/sergiodxa"
],
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy"
],
"author": {
"name": "Sergio Xalambrí",
"email": "[email protected]",
"url": "https://sergiodxa.com"
},
"repository": {
"url": "https://github.com/sergiodxa/remix-auth-oauth2",
"type": "git"
},
"homepage": "https://github.com/sergiodxa/remix-auth-oauth2#readme",
"bugs": {
"url": "https://github.com/sergiodxa/remix-auth-oauth2/issues"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"sideEffects": false,
"type": "module",
"engines": {
"node": "^18.0.0 || ^20.0.0 || >=20.0.0"
},
"files": [
"build",
"package.json",
"README.md"
],
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"dependencies": {
"@oslojs/crypto": "^0.6.2",
"@oslojs/encoding": "^1.0.0",
"@oslojs/oauth2": "^0.5.0",
"debug": "^4.3.4"
},
"peerDependencies": {
"@remix-run/cloudflare": "^1.0.0 || ^2.0.0",
"@remix-run/node": "^1.0.0 || ^2.0.0",
"@remix-run/deno": "^1.0.0 || ^2.0.0",
"remix-auth": "^3.6.0"
},
"peerDependenciesMeta": {
"@remix-run/cloudflare": {
"optional": true
},
"@remix-run/node": {
"optional": true
},
"@remix-run/deno": {
"optional": true
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@biomejs/biome": "^1.8.3",
"@remix-run/node": "^2.8.1",
"@remix-run/server-runtime": "^2.8.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.0.12",
"@types/debug": "^4.1.12",
"consola": "^3.2.3",
"msw": "^2.2.13",
"remix-auth": "^3.6.0",
"typedoc": "^0.26.2",
"typedoc-plugin-mdn-links": "^3.1.25",
"typescript": "^5.4.5"
}
}