Add initial library

This commit is contained in:
Jonathan Cooper 2026-02-06 18:23:33 -08:00
parent 7cecc1d042
commit e8a82796e0
6 changed files with 180 additions and 0 deletions

25
package.json Normal file
View file

@ -0,0 +1,25 @@
{
"name": "sf-auth-nextjs-middleware",
"version": "0.1.0",
"description": "Nextjs middleware and callback route for sf-auth",
"type": "module",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
}
},
"files": [
"src"
],
"keywords": [
"nextjs",
"middleware",
"authentication",
"sf-auth"
],
"license": "MIT",
"peerDependencies": {
"next": ">=13.4.0"
}
}