feat: add more auth features and remove auth module

This commit is contained in:
master 2025-02-08 01:05:00 +08:00
parent fe10ed2850
commit ba13828093

View File

@ -1,5 +1,6 @@
{ {
"name": "oidc-client-rx", "name": "oidc-client-rx",
"version": "0.1.0-alpha.1",
"homepage": "https://github.com/lonelyhentxi/oidc-client-rx", "homepage": "https://github.com/lonelyhentxi/oidc-client-rx",
"author": "lonelyhentxi", "author": "lonelyhentxi",
"description": "ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications", "description": "ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications",
@ -10,7 +11,6 @@
"bugs": { "bugs": {
"url": "https://github.com/lonelyhentxi/oidc-client-rx/issues" "url": "https://github.com/lonelyhentxi/oidc-client-rx/issues"
}, },
"version": "0.1.0",
"type": "module", "type": "module",
"exports": { "exports": {
".": { ".": {
@ -32,14 +32,13 @@
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.js", "module": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"files": ["dist"], "files": ["dist", "licenses", "LICENSE", "README.md"],
"scripts": { "scripts": {
"build": "rslib build", "build": "rslib build",
"dev": "rslib build --watch", "dev": "rslib build --watch",
"test": "vitest --coverage", "test": "vitest --coverage",
"test-ci": "vitest --watch=false --coverage", "test-ci": "vitest --watch=false --coverage",
"pack": "npm run build && npm pack ./dist", "prepublishOnly": "npm run build",
"publish": "npm run build && npm publish ./dist",
"lint": "ultracite lint", "lint": "ultracite lint",
"format": "ultracite format", "format": "ultracite format",
"cli": "tsx scripts/cli.ts" "cli": "tsx scripts/cli.ts"