@nibssplc/cams-sdk
Version:
Central Authentication Management Service (CAMS) SDK for popup-based authentication with Azure AD + custom 2FA
71 lines (70 loc) • 1.85 kB
JSON
{
"name": "@nibssplc/cams-sdk",
"version": "0.0.1-beta.45",
"workspaces": [
"packages/*"
],
"description": "Central Authentication Management Service (CAMS) SDK for popup-based authentication with Azure AD + custom 2FA",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js",
"default": "./dist/index.esm.js"
}
},
"scripts": {
"clean": "rm -rf dist || true",
"build": "npx rollup -c",
"prepare": "npm run clean && npm run build",
"lint": "eslint src --ext .ts",
"test": "npx jest --verbose",
"build:react": "cd packages/react && npm run build",
"test:react": "cd packages/react && npm run test",
"publish:all": "./scripts/publish.sh",
"postpublish": "echo '✅ Published $(npm pkg get name)@$(npm pkg get version)'"
},
"keywords": [
"cams",
"authentication",
"azure-ad",
"2fa",
"sdk",
"popup-login"
],
"author": "NIBSS PLC, Caleb Boluwade",
"license": "MIT",
"dependencies": {
"@types/react": "^19.1.13",
"react": "^19.1.1",
"tslib": "^2.6.0",
"zod": "^4.0.17"
},
"peerDependencies": {
"tslib": "^2.6.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@rollup/plugin-url": "^8.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"babel-jest": "^30.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^4.21.1",
"ts-jest": "^29.4.1",
"typescript": "^5.4.5"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}