@auth/nextjs
Version:
Authentication for Next.js.
48 lines • 951 B
JSON
{
"name": "@auth/nextjs",
"version": "0.0.0-380f8d56",
"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>",
"devDependencies": {
"typescript": "^4",
"next": "13.3.0"
},
"dependencies": {
"@auth/core": "0.0.0-380f8d56"
},
"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"
},
"scripts": {
"dev": "tsc -w",
"clean": "rm -rf *.js *.d.ts lib",
"build": "pnpm clean && tsc"
}
}