mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
49 lines
940 B
JSON
49 lines
940 B
JSON
{
|
|
"name": "@auth/nextjs",
|
|
"version": "0.0.1",
|
|
"description": "Authentication for Next.js.",
|
|
"keywords": [
|
|
"authentication",
|
|
"authjs",
|
|
"jwt",
|
|
"nextjs",
|
|
"oauth",
|
|
"oidc",
|
|
"passwordless",
|
|
"react"
|
|
],
|
|
"homepage": "https://nextjs.authjs.dev",
|
|
"repository": "https://github.com/nextauthjs/next-auth.git",
|
|
"author": "Balázs Orbán <info@balazsorban.com>",
|
|
"scripts": {
|
|
"dev": "tsc -w",
|
|
"clean": "rm -rf *.js *.d.ts lib",
|
|
"build": "pnpm clean && tsc"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4",
|
|
"next": "13.3.0"
|
|
},
|
|
"dependencies": {
|
|
"@auth/core": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"next": "^13.3.0"
|
|
},
|
|
"type": "module",
|
|
"types": "./index.d.ts",
|
|
"files": [
|
|
"*.js",
|
|
"*.d.ts",
|
|
"lib",
|
|
"src"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
}
|
|
}
|