oidc-client-rx/package.json
2025-01-31 03:23:45 +08:00

85 lines
2.2 KiB
JSON

{
"name": "oidc-client-rx",
"homepage": "https://github.com/lonelyhentxi/oidc-client-rx",
"author": "lonelyhentxi",
"description": "ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications",
"repository": {
"type": "git",
"url": "https://github.com/lonelyhentxi/oidc-client-rx.git"
},
"bugs": {
"url": "https://github.com/lonelyhentxi/oidc-client-rx/issues"
},
"version": "0.1.0",
"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"],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "vitest --code-coverage",
"test-ci": "vitest --watch=false --browsers=ChromeHeadlessNoSandbox --code-coverage",
"pack": "npm run build && npm pack ./dist",
"publish": "npm run build && npm publish ./dist",
"coverage": "vitest run --coverage",
"lint": "ultracite lint",
"format": "ultracite format",
"cli": "tsx scripts/cli.ts"
},
"dependencies": {
"@ngify/http": "^2.0.4",
"injection-js": "git+https://github.com/mgechev/injection-js.git#81a10e0",
"reflect-metadata": "^0.2.2"
},
"peerDependencies": {
"rxjs": "^7.4.0||>=8.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@biomejs/js-api": "0.7.1",
"@biomejs/wasm-nodejs": "^1.9.4",
"@evilmartians/lefthook": "^1.0.3",
"@playwright/test": "^1.49.1",
"@rslib/core": "^0.3.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.12.0",
"@vitest/coverage-v8": "^3.0.1",
"commander": "^13.1.0",
"lodash-es": "^4.17.21",
"oxc-parser": "^0.48.1",
"oxc-walker": "^0.2.2",
"rfc4648": "^1.5.0",
"rxjs": "^7.4.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"ultracite": "^4.1.15",
"vitest": "^3.0.1"
},
"keywords": [
"rxjs",
"oidc",
"oauth2",
"openid",
"security",
"typescript",
"openidconnect",
"auth",
"authn",
"authentication",
"identity",
"certified",
"oauth",
"authorization",
"reactivex"
]
}