@nr1e/lucia-adapter-dynamodb
Version:
A DynamoDB adapter for lucia-auth
72 lines • 1.76 kB
JSON
{
"name": "@nr1e/lucia-adapter-dynamodb",
"version": "4.0.3",
"type": "module",
"description": "A DynamoDB adapter for lucia-auth",
"main": "dist/index.js",
"module": "dist/index.d.js",
"files": [
"**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nr1etech/lucia-adapter-dynamodb.git"
},
"keywords": [
"lucia-auth",
"adapter",
"DynamoDB"
],
"author": "NR1E, Inc.",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nr1etech/lucia-adapter-dynamodb/issues"
},
"homepage": "https://github.com/nr1etech/lucia-adapter-dynamodb#readme",
"devDependencies": {
"@eslint/js": "^9.30.0",
"@lucia-auth/adapter-test": "^5.0.2",
"@types/node": "^22.15.34",
"@vitest/coverage-v8": "^1.6.1",
"eslint": "^9.30.0",
"prettier": "^3.6.2",
"testcontainers": "^10.28.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"vitest": "^1.6.1"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.839.0",
"@aws-sdk/util-dynamodb": "^3.839.0",
"lucia": "^3.2.2"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.839.0",
"@aws-sdk/util-dynamodb": "^3.839.0",
"lucia": "^3.2.2"
},
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"engines": {
"node": ">=22",
"npm": "use pnpm",
"yarn": "use pnpm",
"pnpm": ">=10"
},
"scripts": {
"prebuild": "prettier --check . && eslint src",
"build": "tsc",
"postbuild": "cp README.md package.json dist",
"watch": "tsc -w",
"test": "vitest run --coverage",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"fmt": "prettier --write ."
}
}