{ "name": "atauth-gateway", "version": "2.2.0", "description": "AT Protocol OAuth gateway for application authentication", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "build": "tsc", "start": "node dist/index.js", "dev": "tsx watch src/index.ts", "lint": "eslint src/", "typecheck": "tsc --noEmit", "test": "vitest", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "test:unit": "vitest run src/", "test:e2e": "vitest run tests/" }, "keywords": [ "atproto", "bluesky", "authentication", "oauth", "gateway" ], "author": "ATAuth Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/Cache8063/atauth" }, "dependencies": { "@atproto/oauth-client-node": "^0.3.0", "@simplewebauthn/server": "^13.0.0", "better-sqlite3": "^12.0.0", "cors": "^2.8.5", "express": "^5.0.0", "helmet": "^8.0.0", "nodemailer": "^7.0.13", "otpauth": "^9.2.1", "qrcode": "^1.5.3" }, "devDependencies": { "@types/better-sqlite3": "^7.6.8", "@types/cors": "^2.8.17", "@types/express": "^5.0.0", "@types/node": "^22.0.0", "@types/nodemailer": "^7.0.9", "@types/qrcode": "^1.5.6", "@types/supertest": "^6.0.3", "@vitest/coverage-v8": "^4.0.18", "eslint": "^9.0.0", "globals": "^15.0.0", "supertest": "^7.2.2", "tsx": "^4.19.0", "typescript": "^5.7.0", "typescript-eslint": "^8.0.0", "vitest": "^4.0.18" }, "engines": { "node": ">=20.0.0" } }