-
-
Notifications
You must be signed in to change notification settings - Fork 495
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0f885b7
commit 606a596
Showing
24 changed files
with
64 additions
and
480 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1 @@ | ||
{ | ||
"name": "@lucia-auth/adapter-mongoose", | ||
"version": "3.0.0-beta.1", | ||
"description": "Mongoose (MongoDB) adapter for Lucia", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"/dist/", | ||
"CHANGELOG.md" | ||
], | ||
"scripts": { | ||
"build": "shx rm -rf ./dist/* && tsc", | ||
"test": "tsx test/index.ts", | ||
"auri.build": "pnpm build" | ||
}, | ||
"keywords": [ | ||
"lucia", | ||
"lucia", | ||
"auth", | ||
"authentication", | ||
"adapter", | ||
"mongodb", | ||
"mongo", | ||
"mongoose" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/lucia", | ||
"directory": "packages/adapter-mongoose" | ||
}, | ||
"author": "pilcrowonpaper", | ||
"license": "MIT", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"peerDependencies": { | ||
"lucia": "2.0.0-beta.2", | ||
"mongoose": "6.x - 7.x" | ||
}, | ||
"devDependencies": { | ||
"@lucia-auth/adapter-test": "latest", | ||
"dotenv": "^16.0.3", | ||
"tsx": "^3.12.6", | ||
"mongoose": "^6.6.1", | ||
"lucia": "latest" | ||
} | ||
} | ||
{"name":"@lucia-auth/adapter-mongoose","version":"3.0.0-beta.2","description":"Mongoose (MongoDB) adapter for Lucia","main":"dist/index.js","types":"dist/index.d.ts","module":"dist/index.js","type":"module","files":["/dist/","CHANGELOG.md"],"scripts":{"build":"shx rm -rf ./dist/* && tsc","test":"tsx test/index.ts","auri.build":"pnpm build"},"keywords":["lucia","lucia","auth","authentication","adapter","mongodb","mongo","mongoose"],"repository":{"type":"git","url":"https://github.com/pilcrowOnPaper/lucia","directory":"packages/adapter-mongoose"},"author":"pilcrowonpaper","license":"MIT","exports":{".":"./dist/index.js"},"peerDependencies":{"lucia":"2.0.0-beta.2","mongoose":"6.x - 7.x"},"devDependencies":{"@lucia-auth/adapter-test":"latest","dotenv":"^16.0.3","tsx":"^3.12.6","mongoose":"^6.6.1","lucia":"latest"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1 @@ | ||
{ | ||
"name": "@lucia-auth/adapter-mysql", | ||
"version": "2.0.0-beta.2", | ||
"description": "MySQL adapter for Lucia", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"/dist/", | ||
"CHANGELOG.md" | ||
], | ||
"scripts": { | ||
"build": "shx rm -rf ./dist/* && tsc", | ||
"test.mysql2": "tsx test/mysql2/index.ts", | ||
"test.planetscale": "tsx test/planetscale/index.ts", | ||
"test-setup.planetscale": "tsx test/planetscale/setup.ts", | ||
"test-setup.mysql2": "tsx test/mysql2/setup.ts", | ||
"auri.build": "pnpm build" | ||
}, | ||
"keywords": [ | ||
"lucia", | ||
"auth", | ||
"mysql2", | ||
"mysql", | ||
"planetscale", | ||
"authentication", | ||
"adapter", | ||
"sql" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/lucia", | ||
"directory": "packages/adapter-mysql" | ||
}, | ||
"author": "pilcrowonpaper", | ||
"license": "MIT", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"peerDependencies": { | ||
"lucia": "2.0.0-beta.2", | ||
"mysql2": "^3.0.0", | ||
"@planetscale/database": "^1.0.0" | ||
}, | ||
"peerDependenciesMeta": { | ||
"mysql2": { | ||
"optional": true | ||
}, | ||
"@planetscale/database": { | ||
"optional": true | ||
} | ||
}, | ||
"devDependencies": { | ||
"@lucia-auth/adapter-test": "latest", | ||
"@planetscale/database": "^1.7.0", | ||
"dotenv": "^16.0.3", | ||
"lucia": "latest", | ||
"mysql2": "^3.2.3", | ||
"tsx": "^3.12.6" | ||
} | ||
} | ||
{"name":"@lucia-auth/adapter-mysql","version":"2.0.0-beta.3","description":"MySQL adapter for Lucia","main":"dist/index.js","types":"dist/index.d.ts","module":"dist/index.js","type":"module","files":["/dist/","CHANGELOG.md"],"scripts":{"build":"shx rm -rf ./dist/* && tsc","test.mysql2":"tsx test/mysql2/index.ts","test.planetscale":"tsx test/planetscale/index.ts","test-setup.planetscale":"tsx test/planetscale/setup.ts","test-setup.mysql2":"tsx test/mysql2/setup.ts","auri.build":"pnpm build"},"keywords":["lucia","auth","mysql2","mysql","planetscale","authentication","adapter","sql"],"repository":{"type":"git","url":"https://github.com/pilcrowOnPaper/lucia","directory":"packages/adapter-mysql"},"author":"pilcrowonpaper","license":"MIT","exports":{".":"./dist/index.js"},"peerDependencies":{"lucia":"2.0.0-beta.2","mysql2":"^3.0.0","@planetscale/database":"^1.0.0"},"peerDependenciesMeta":{"mysql2":{"optional":true},"@planetscale/database":{"optional":true}},"devDependencies":{"@lucia-auth/adapter-test":"latest","@planetscale/database":"^1.7.0","dotenv":"^16.0.3","lucia":"latest","mysql2":"^3.2.3","tsx":"^3.12.6"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1 @@ | ||
{ | ||
"name": "@lucia-auth/adapter-postgresql", | ||
"version": "2.0.0-beta.1", | ||
"description": "PostgreSQL adapter for Lucia", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"/dist/", | ||
"CHANGELOG.md" | ||
], | ||
"scripts": { | ||
"build": "shx rm -rf ./dist/* && tsc", | ||
"test.pg": "tsx test/pg/index.ts", | ||
"test-setup.pg": "tsx test/pg/setup.ts", | ||
"auri.build": "pnpm build" | ||
}, | ||
"keywords": [ | ||
"lucia", | ||
"lucia", | ||
"auth", | ||
"pg", | ||
"postgresql", | ||
"authentication", | ||
"adapter", | ||
"sql", | ||
"kysely", | ||
"drizzle" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/lucia", | ||
"directory": "packages/adapter-postgresql" | ||
}, | ||
"author": "pilcrowonpaper", | ||
"license": "MIT", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"peerDependencies": { | ||
"lucia": "2.0.0-beta.2", | ||
"pg": "^8.0.0" | ||
}, | ||
"peerDependenciesMeta": { | ||
"pg": { | ||
"optional": true | ||
} | ||
}, | ||
"devDependencies": { | ||
"@lucia-auth/adapter-test": "latest", | ||
"@types/pg": "^8.6.5", | ||
"dotenv": "^16.0.3", | ||
"lucia": "latest", | ||
"tsx": "^3.12.6" | ||
}, | ||
"dependencies": { | ||
"pg": "^8.8.0" | ||
} | ||
} | ||
{"name":"@lucia-auth/adapter-postgresql","version":"2.0.0-beta.2","description":"PostgreSQL adapter for Lucia","main":"dist/index.js","types":"dist/index.d.ts","module":"dist/index.js","type":"module","files":["/dist/","CHANGELOG.md"],"scripts":{"build":"shx rm -rf ./dist/* && tsc","test.pg":"tsx test/pg/index.ts","test-setup.pg":"tsx test/pg/setup.ts","auri.build":"pnpm build"},"keywords":["lucia","lucia","auth","pg","postgresql","authentication","adapter","sql","kysely","drizzle"],"repository":{"type":"git","url":"https://github.com/pilcrowOnPaper/lucia","directory":"packages/adapter-postgresql"},"author":"pilcrowonpaper","license":"MIT","exports":{".":"./dist/index.js"},"peerDependencies":{"lucia":"2.0.0-beta.2","pg":"^8.0.0"},"peerDependenciesMeta":{"pg":{"optional":true}},"devDependencies":{"@lucia-auth/adapter-test":"latest","@types/pg":"^8.6.5","dotenv":"^16.0.3","lucia":"latest","tsx":"^3.12.6"},"dependencies":{"pg":"^8.8.0"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1 @@ | ||
{ | ||
"name": "@lucia-auth/adapter-prisma", | ||
"version": "3.0.0-beta.1", | ||
"description": "Prisma adapter for Lucia", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"module": "dist/index.js", | ||
"type": "module", | ||
"files": [ | ||
"/dist/", | ||
"CHANGELOG.md" | ||
], | ||
"scripts": { | ||
"build": "shx rm -rf ./dist/* && tsc", | ||
"test": "tsx test/index.ts", | ||
"test-setup": "prisma db push", | ||
"auri.build": "pnpm build" | ||
}, | ||
"keywords": [ | ||
"lucia", | ||
"prisma", | ||
"lucia", | ||
"auth", | ||
"postgres", | ||
"mysql", | ||
"sqlite", | ||
"authentication", | ||
"adapter", | ||
"sql", | ||
"postgresql" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/pilcrowOnPaper/lucia", | ||
"directory": "packages/adapter-prisma" | ||
}, | ||
"author": "pilcrowonpaper", | ||
"license": "MIT", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"peerDependencies": { | ||
"@prisma/client": "^4.2.0", | ||
"lucia": "2.0.0-beta.2" | ||
}, | ||
"devDependencies": { | ||
"lucia": "latest", | ||
"@lucia-auth/adapter-test": "latest", | ||
"@prisma/client": "^4.9.0", | ||
"prisma": "^4.9.0", | ||
"tsx": "^3.12.6" | ||
} | ||
} | ||
{"name":"@lucia-auth/adapter-prisma","version":"3.0.0-beta.2","description":"Prisma adapter for Lucia","main":"dist/index.js","types":"dist/index.d.ts","module":"dist/index.js","type":"module","files":["/dist/","CHANGELOG.md"],"scripts":{"build":"shx rm -rf ./dist/* && tsc","test":"tsx test/index.ts","test-setup":"prisma db push","auri.build":"pnpm build"},"keywords":["lucia","prisma","lucia","auth","postgres","mysql","sqlite","authentication","adapter","sql","postgresql"],"repository":{"type":"git","url":"https://github.com/pilcrowOnPaper/lucia","directory":"packages/adapter-prisma"},"author":"pilcrowonpaper","license":"MIT","exports":{".":"./dist/index.js"},"peerDependencies":{"@prisma/client":"^4.2.0","lucia":"2.0.0-beta.2"},"devDependencies":{"lucia":"latest","@lucia-auth/adapter-test":"latest","@prisma/client":"^4.9.0","prisma":"^4.9.0","tsx":"^3.12.6"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
606a596
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
lucia – ./documentation
lucia-sveltekit.vercel.app
lucia-auth.vercel.app
lucia-git-main-pilcrowonpaper.vercel.app
lucia-pilcrowonpaper.vercel.app
lucia-auth.com
www.lucia-auth.com