authentik now working with convex auth

This commit is contained in:
2026-01-12 10:10:03 -06:00
parent abcf9df6aa
commit 72f11f0b02
27 changed files with 1310 additions and 134 deletions

View File

@@ -6,15 +6,18 @@
"description": "Convex Backend for Monorepo",
"author": "Gib",
"license": "MIT",
"exports": {},
"exports": {
"./types" : "./types/index.ts"
},
"scripts": {
"dev": "convex dev",
"dev:tunnel": "convex dev",
"setup": "convex dev --until-success",
"dev": "bun with-env convex dev",
"dev:tunnel": "bun with-env convex dev",
"setup": "bun with-env convex dev --until-success",
"clean": "git clean -xdf .cache .turbo dist node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint --flag unstable_native_nodejs_ts_config",
"typecheck": "tsc --noEmit"
"typecheck": "tsc --noEmit",
"with-env": "dotenv -e ../../.env --"
},
"dependencies": {
"@oslojs/crypto": "^1.0.1",