UNPKG

@dbs-portal/module-identity

Version:

Identity management module for user and role management

101 lines (100 loc) 2.6 kB
{ "name": "@dbs-portal/module-identity", "version": "1.0.0", "description": "Identity management module for user and role management", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./components": { "import": "./dist/components.js", "types": "./dist/components.d.ts" }, "./services": { "import": "./dist/services.js", "types": "./dist/services.d.ts" }, "./types": { "import": "./dist/types.js", "types": "./dist/types.d.ts" }, "./hooks": { "import": "./dist/hooks.js", "types": "./dist/hooks.d.ts" } }, "files": [ "dist" ], "scripts": { "build": "tsc && vite build", "dev": "tsc --watch", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "biome lint src", "format": "biome format src --write", "lint:fix": "biome lint src --fix", "type-check": "tsc --noEmit", "clean": "rimraf dist" }, "dependencies": { "@dbs-portal/core-api": "1.0.0", "@dbs-portal/core-auth": "1.0.0", "@dbs-portal/core-shared": "1.0.0", "@dbs-portal/core-store": "1.0.0", "@dbs-portal/core-ui": "1.0.0", "@tanstack/react-query": "^5.0.0", "@tanstack/react-router": "^1.0.0", "antd": "^5.0.0", "date-fns": "^3.0.0", "immer": "^10.0.0", "lodash-es": "^4.17.21", "react": "^18.2.0", "react-dom": "^18.2.0", "zod": "^3.0.0", "zustand": "^4.0.0" }, "devDependencies": { "@dbs-portal/tool-build": "1.0.0", "@dbs-portal/tool-testing": "1.0.0", "@dbs-portal/tool-tsconfig": "1.0.0", "@testing-library/jest-dom": "^6.6.4", "@types/lodash-es": "^4.17.0", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "rimraf": "^5.0.0", "typescript": "^5.0.0", "vite": "^5.0.0", "vitest": "^1.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "keywords": [ "dbs-portal", "identity", "user-management", "role-management", "authentication", "authorization", "react", "typescript" ], "author": "DBS Portal Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/devboost-solutions/dbs-portal.git", "directory": "packages/modules/identity" }, "bugs": { "url": "https://github.com/your-org/dbs-portal/issues" }, "homepage": "https://github.com/your-org/dbs-portal#readme" }