-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.38 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
{
"name": "remix-auth-socials",
"version": "3.0.0",
"description": "A collection of social media strategies for remix-auth",
"author": {
"name": "Tom Rowe",
"email": "theflyingcoder@hotmail.com",
"url": "https://github.com/TheRealFlyingCoder"
},
"repository": {
"url": "https://github.com/TheRealFlyingCoder/remix-auth-socials",
"type": "git"
},
"homepage": "https://github.com/TheRealFlyingCoder/remix-auth-socials#readme",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"oauth",
"socials"
],
"license": "MIT",
"exports": {
".": "./build/index.js",
"./package.json": "./package.json"
},
"files": [
"build",
"src",
"package.json",
"README.md"
],
"sideEffects": false,
"type": "module",
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "^1.8.3",
"@mjackson/headers": "^0.10.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.1.14",
"msw": "^2.7.0",
"typedoc": "^0.28.0",
"typedoc-plugin-mdn-links": "^5.0.1",
"typescript": "^5.5.4"
},
"dependencies": {
"remix-auth": "^4.2.0",
"remix-auth-github": "^3.0.2",
"remix-auth-microsoft": "^3.0.1",
"remix-auth-oauth2": "^3.4.0"
}
}