logto-auth-node-sdk
Version:
A comprehensive Logto authentication client library with circuit breaker pattern support
59 lines (58 loc) • 1.42 kB
JSON
{
"name": "logto-auth-node-sdk",
"version": "1.0.0",
"description": "A comprehensive Logto authentication client library with circuit breaker pattern support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"logto",
"authentication",
"oauth",
"jwt",
"circuit-breaker",
"resilience",
"typescript"
],
"author": "Gathsara Umesh",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/GathsaraH/logto-auth-node-sdk"
},
"bugs": {
"url": "https://github.com/GathsaraH/logto-auth-node-sdk/issues"
},
"homepage": "https://github.com/GathsaraH/logto-auth-node-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.50",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"rimraf": "^5.0.10",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"dependencies": {
"axios": "^1.9.0"
},
"engines": {
"node": ">=16.0.0"
}
}