@blureffect/oauth2-token-manager
Version:
A scalable OAuth2 token management library with multi-system support
100 lines (99 loc) • 2.95 kB
JSON
{
"name": "@blureffect/oauth2-token-manager",
"version": "0.1.0",
"description": "A scalable OAuth2 token management library with multi-system support",
"keywords": [
"oauth2",
"authentication",
"token-management",
"typescript"
],
"homepage": "https://github.com/blureffect/oauth2-token-manager#readme",
"bugs": {
"url": "https://github.com/blureffect/oauth2-token-manager/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blureffect/oauth2-token-manager.git"
},
"license": "MIT",
"author": "Blureffect <sebastian@blureffect.co>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"dev:example": "tsx src/examples/basic.ts",
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:config": "eslint --print-config src/index.ts",
"format": "prettier --write",
"format:check": "prettier",
"typecheck": "tsc --noEmit",
"docs": "typedoc",
"docs:watch": "typedoc --watch",
"ci": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"prepublishOnly": "npm run ci",
"prepare": "husky install",
"release": "npm run ci:all && changeset publish",
"_postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"dependencies": {
"@changesets/cli": "^2.29.4",
"@types/node": "^22.15.29",
"crypto": "^1.0.1",
"iron-session": "^8.0.4",
"la": "link:../../../Library/pnpm/global/5/node_modules/la",
"ls": "link:../../../Library/pnpm/global/5/node_modules/ls",
"oauth2-token-manager": "link:../../../Library/pnpm/global/5/node_modules/@blureffect/oauth2-token-manager",
"pinst": "^3.0.0",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitest/coverage-v8": "^3.2.1",
"@vitest/ui": "^3.2.1",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"globals": "^16.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.5",
"typedoc-plugin-markdown": "^4.6.4",
"vitest": "^3.2.1"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}