-
-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.49 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
62
63
64
65
{
"name": "remix-auth",
"version": "4.2.0",
"author": {
"name": "Sergio Xalambrí",
"email": "hello+oss@sergiodxa.com",
"url": "https://sergiodxa.com"
},
"repository": {
"url": "https://github.com/sergiodxa/remix-auth",
"type": "git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.3.2",
"msw": "^2.12.1",
"oxlint": "^1.28.0",
"prettier": "^3.6.2",
"typedoc": "^0.28.14",
"typedoc-plugin-mdn-links": "^5.0.10",
"typescript": "^5.5.4"
},
"exports": {
".": "./build/index.js",
"./strategy": "./build/strategy.js",
"./oauth2": "./build/strategies/oauth2.js",
"./form": "./build/strategies/form.js",
"./package.json": "./package.json"
},
"bugs": {
"url": "https://github.com/sergiodxa/remix-auth/issues"
},
"description": "Simple Authentication for Remix and React Router",
"engines": {
"node": ">=20.0.0"
},
"files": [
"build",
"src",
"package.json",
"README.md"
],
"funding": [
"https://github.com/sponsors/sergiodxa"
],
"homepage": "https://github.com/sergiodxa/remix-auth",
"license": "MIT",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "oxlint .",
"lint:fix": "oxlint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"exports": "bun run ./scripts/exports.ts"
},
"sideEffects": false,
"type": "module",
"dependencies": {
"@edgefirst-dev/data": "^0.0.4",
"@remix-run/headers": "^0.16.0",
"arctic": "^3.7.0"
}
}