mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-27 09:32:20 -05:00
132 lines
3.4 KiB
JSON
132 lines
3.4 KiB
JSON
{
|
|
"name": "@better-auth/core",
|
|
"version": "1.4.0-beta.25",
|
|
"description": "The most comprehensive authentication framework for TypeScript.",
|
|
"type": "module",
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"exports": {
|
|
".": {
|
|
"dev-source": "./src/index.ts",
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./api": {
|
|
"dev-source": "./src/api/index.ts",
|
|
"types": "./dist/api/index.d.mts",
|
|
"default": "./dist/api/index.mjs"
|
|
},
|
|
"./async_hooks": {
|
|
"dev-source": "./src/async_hooks/index.ts",
|
|
"types": "./dist/async_hooks/index.d.mts",
|
|
"default": "./dist/async_hooks/index.mjs"
|
|
},
|
|
"./context": {
|
|
"dev-source": "./src/context/index.ts",
|
|
"types": "./dist/context/index.d.mts",
|
|
"default": "./dist/context/index.mjs"
|
|
},
|
|
"./env": {
|
|
"dev-source": "./src/env/index.ts",
|
|
"types": "./dist/env/index.d.mts",
|
|
"default": "./dist/env/index.mjs"
|
|
},
|
|
"./error": {
|
|
"dev-source": "./src/error/index.ts",
|
|
"types": "./dist/error/index.d.mts",
|
|
"default": "./dist/error/index.mjs"
|
|
},
|
|
"./utils": {
|
|
"dev-source": "./src/utils/index.ts",
|
|
"types": "./dist/utils/index.d.mts",
|
|
"default": "./dist/utils/index.mjs"
|
|
},
|
|
"./social-providers": {
|
|
"dev-source": "./src/social-providers/index.ts",
|
|
"types": "./dist/social-providers/index.d.mts",
|
|
"default": "./dist/social-providers/index.mjs"
|
|
},
|
|
"./db": {
|
|
"dev-source": "./src/db/index.ts",
|
|
"types": "./dist/db/index.d.mts",
|
|
"default": "./dist/db/index.mjs"
|
|
},
|
|
"./db/adapter": {
|
|
"dev-source": "./src/db/adapter/index.ts",
|
|
"types": "./dist/db/adapter/index.d.mts",
|
|
"default": "./dist/db/adapter/index.mjs"
|
|
},
|
|
"./oauth2": {
|
|
"dev-source": "./src/oauth2/index.ts",
|
|
"types": "./dist/oauth2/index.d.mts",
|
|
"default": "./dist/oauth2/index.mjs"
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"dist/index.d.mts"
|
|
],
|
|
"api": [
|
|
"dist/api/index.d.mts"
|
|
],
|
|
"async_hooks": [
|
|
"dist/async_hooks/index.d.mts"
|
|
],
|
|
"context": [
|
|
"dist/context/index.d.mts"
|
|
],
|
|
"env": [
|
|
"dist/env/index.d.mts"
|
|
],
|
|
"error": [
|
|
"dist/error/index.d.mts"
|
|
],
|
|
"utils": [
|
|
"dist/utils/index.d.mts"
|
|
],
|
|
"social-providers": [
|
|
"dist/social-providers/index.d.mts"
|
|
],
|
|
"db": [
|
|
"dist/db/index.d.mts"
|
|
],
|
|
"db/adapter": [
|
|
"dist/db/adapter/index.d.mts"
|
|
],
|
|
"oauth2": [
|
|
"dist/oauth2/index.d.mts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"typecheck": "tsc --project tsconfig.json",
|
|
"test": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@better-auth/utils": "0.3.0",
|
|
"@better-fetch/fetch": "catalog:",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"better-call": "catalog:",
|
|
"better-sqlite3": "^12.4.1",
|
|
"jose": "^6.1.0",
|
|
"kysely": "^0.28.5",
|
|
"nanostores": "^1.0.1",
|
|
"tsdown": "catalog:"
|
|
},
|
|
"dependencies": {
|
|
"@standard-schema/spec": "^1.0.0",
|
|
"zod": "^4.1.12"
|
|
},
|
|
"peerDependencies": {
|
|
"@better-auth/utils": "0.3.0",
|
|
"@better-fetch/fetch": "catalog:",
|
|
"better-call": "catalog:",
|
|
"jose": "^6.1.0",
|
|
"kysely": "^0.28.5",
|
|
"nanostores": "^1.0.1"
|
|
}
|
|
}
|