-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
56 lines (56 loc) · 1.27 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
{
"name": "remix-auth",
"version": "4.1.0",
"author": {
"name": "Sergio Xalambrí",
"email": "[email protected]",
"url": "https://sergiodxa.com"
},
"repository": {
"url": "https://github.com/sergiodxa/remix-auth",
"type": "git"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.1",
"@biomejs/biome": "^1.8.3",
"@mjackson/headers": "^0.9.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/bun": "^1.1.14",
"msw": "^2.7.0",
"typedoc": "^0.27.5",
"typedoc-plugin-mdn-links": "^4.0.5",
"typescript": "^5.5.4"
},
"exports": {
".": "./build/index.js",
"./strategy": "./build/strategy.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",
"quality": "biome check .",
"quality:fix": "biome check . --write --unsafe",
"exports": "bun run ./scripts/exports.ts"
},
"sideEffects": false,
"type": "module"
}