{
    "name": "@authup/server-kit",
    "type": "module",
    "version": "1.0.0-beta.65",
    "description": "A toolkit for server-side services.",
    "license": "Apache-2.0",
    "exports": {
        "./package.json": "./package.json",
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.mjs"
        }
    },
    "main": "./dist/index.mjs",
    "module": "./dist/index.mjs",
    "types": "./dist/index.d.ts",
    "files": [
        "dist"
    ],
    "scripts": {
        "build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
        "build:js": "tsdown",
        "build": "rimraf ./dist && npm run build:js && npm run build:types",
        "check:types": "tsc -p tsconfig.test.json",
        "test": "cross-env NODE_ENV=test vitest run test/unit",
        "test:coverage": "cross-env NODE_ENV=test vitest run --coverage"
    },
    "engines": {
        "node": "^22.13.0 || ^23.5.0 || >=24.0.0"
    },
    "keywords": [
        "auth",
        "server",
        "jwt",
        "crypto",
        "bcrypt",
        "password-hashing",
        "token",
        "signing",
        "key-management",
        "redis",
        "cache",
        "logging"
    ],
    "author": {
        "name": "Peter Placzek",
        "email": "contact@tada5hi.net",
        "url": "https://github.com/tada5hi"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/authup/authup.git",
        "directory": "packages/server-kit"
    },
    "bugs": {
        "url": "https://github.com/authup/authup/issues"
    },
    "homepage": "https://github.com/authup/authup#readme",
    "dependencies": {
        "@authup/access": "^1.0.0-beta.65",
        "@authup/core-kit": "^1.0.0-beta.65",
        "@authup/core-realtime-kit": "^1.0.0-beta.65",
        "@authup/kit": "^1.0.0-beta.65",
        "@authup/specs": "^1.0.0-beta.65",
        "@isaacs/ttlcache": "^2.1.4",
        "@rapiq/core": "^2.2.0",
        "@node-rs/bcrypt": "^1.10.8",
        "@node-rs/jsonwebtoken": "^0.5.10",
        "@socket.io/redis-emitter": "^5.1.0",
        "redis-extension": "^2.0.4",
        "smob": "^1.6.1",
        "uncrypto": "^0.1.3",
        "winston": "^3.19.0"
    },
    "devDependencies": {
        "vitest": "^4.0.14"
    },
    "publishConfig": {
        "access": "public"
    }
}
