-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.37 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
{
"name": "remix-authjs",
"description": "Auth.js Authentication for Remix.",
"version": "0.3.78",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsup --config ./tsup.config.js",
"patch": "npm version patch --no-git-tag-version",
"clean": "rm -rf dist",
"prepare": "npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@auth/core": "^0.37.4",
"@remix-run/react": "^2.15.0",
"@remix-run/server-runtime": "^2.15.0",
"cookie": "^1.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@types/next-auth": "^3.15.0",
"@types/node": "^18.19.67",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.2",
"tsup": "^6.7.0",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"keywords": [
"Remix",
"React",
"Auth"
],
"author": {
"name": "Eldevia",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/eldevia/next-authjs"
},
"license": "GPL-3.0"
}