@re-auth/http-adapters
Version:
HTTP adapters for ReAuth authentication framework
82 lines • 1.97 kB
JSON
{
"name": "@re-auth/http-adapters",
"version": "1.0.0-alpha.14",
"description": "HTTP adapters for ReAuth authentication framework",
"type": "module",
"main": "./dist/cjs/src/index.js",
"module": "./dist/esm/src/index.js",
"types": "./dist/esm/src/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/esm/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"require": "./dist/cjs/src/index.js"
},
"./adapters/*": {
"types": "./dist/esm/src/adapters/*.d.ts",
"import": "./dist/esm/src/adapters/*.js",
"require": "./dist/cjs/src/adapters/*.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/esm/src/index.d.ts"
],
"adapters/*": [
"./dist/esm/src/adapters/*.d.ts"
]
}
},
"files": [
"dist",
"!**/*.tsbuildinfo",
"package.json",
"README.md"
],
"dependencies": {
"@fastify/cookie": "^11.0.2",
"express": "^5.1.0",
"fastify": "^5.3.3",
"hono": "^4.7.10",
"@re-auth/reauth": "0.1.0-alpha.16"
},
"devDependencies": {
"@types/express": "^5.0.2",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0",
"@repo/typescript-config": "0.0.0"
},
"peerDependencies": {
"@re-auth/reauth": "0.1.0-alpha.16"
},
"keywords": [
"re-auth",
"http",
"adapters",
"authentication",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/SOG-web/reauth"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build": "pnpm clean && pnpm build:esm && pnpm build:cjs",
"dev": "pnpm build:esm --watch",
"lint": "tsc --noEmit",
"test": "vitest",
"test:watch": "vitest --watch"
}
}