UNPKG

@jhzhu89/azure-client-pool

Version:

Azure client lifecycle management with intelligent caching and authentication

89 lines (88 loc) 2.22 kB
{ "name": "@jhzhu89/azure-client-pool", "version": "0.0.10", "description": "Azure client lifecycle management with intelligent caching and authentication", "keywords": [ "azure", "authentication", "client-management", "typescript", "oauth", "jwt", "cache" ], "author": "jhzhu89", "license": "MIT", "homepage": "https://github.com/jhzhu89/azure-client-pool", "repository": { "type": "git", "url": "https://github.com/jhzhu89/azure-client-pool.git" }, "bugs": { "url": "https://github.com/jhzhu89/azure-client-pool/issues" }, "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "engines": { "node": ">=18.0.0", "bun": ">=1.0.0" }, "scripts": { "build": "tsup", "build:watch": "tsup --watch", "dev": "bun --watch src/index.ts", "test": "bun test", "test:watch": "bun test --watch", "test:coverage": "bun test --coverage", "lint": "eslint src", "lint:fix": "eslint src --fix", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "clean": "rm -rf dist", "prepublishOnly": "bun run lint && bun run test && bun run build" }, "peerDependencies": { "@azure/app-configuration-provider": "^2.1.0", "@azure/identity": "^4.10.0", "zod": "^3.25.76" }, "dependencies": { "@isaacs/ttlcache": "^1.4.1", "jsonwebtoken": "^9.0.2", "jwks-rsa": "^3.2.0", "pino": "^9.7.0", "pino-pretty": "^13.0.0" }, "devDependencies": { "@azure/app-configuration-provider": "^2.1.0", "@azure/identity": "^4.10.0", "@eslint/js": "^9.30.0", "@types/bun": "latest", "@types/node": "^24.0.8", "@typescript-eslint/eslint-plugin": "^8.35.1", "@typescript-eslint/parser": "^8.35.1", "eslint": "^9.30.0", "prettier": "^3.3.3", "tsup": "^8.5.0", "typescript": "^5.8.3", "zod": "^3.25.76" }, "prettier": { "semi": true, "singleQuote": false, "printWidth": 80, "tabWidth": 2 } }