UNPKG

@mrhsp/auth-backend

Version:

Gate Keeper Backend Authentication Package

45 lines (44 loc) 1 kB
{ "name": "@mrhsp/auth-backend", "version": "0.1.0", "description": "Gate Keeper Backend Authentication Package", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "tsc", "start": "node dist/index.js", "test": "NODE_OPTIONS='--experimental-vm-modules' jest", "prepublishOnly": "npm run build" }, "keywords": [ "gate_keeper", "authentication", "jwt", "database-agnostic", "esm" ], "author": "Mehrad Hassanpour", "license": "ISC", "dependencies": { "bcrypt": "^5.1.1", "jsonwebtoken": "^9.0.2" }, "devDependencies": { "@types/bcrypt": "^5.0.2", "@types/jest": "^29.5.14", "@types/jsonwebtoken": "^9.0.8", "@types/node": "^22.12.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "jest-environment-node": "^29.7.0", "ts-jest": "^29.2.5", "typescript": "^5.7.3" }, "engines": { "node": ">=16.0.0" } }