@joouis/msal-react-utility
Version:
The utility package for @azure/msal-react.
62 lines (61 loc) • 1.5 kB
JSON
{
"name": "@joouis/msal-react-utility",
"version": "2.4.1",
"description": "The utility package for @azure/msal-react.",
"keywords": [
"azure",
"msal",
"react",
"aad",
"entra",
"utility"
],
"scripts": {
"build": "tsup",
"check-format": "prettier --check .",
"check-exports": "attw --pack .",
"lint": "tsc",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"prepublishOnly": "npm run ci",
"local-release": "changeset version && changeset publish",
"prepare": "husky"
},
"author": "John Chou <luckyjoou@gmail.com> (https://joouis.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Joouis/msal-react-utility.git"
},
"files": [
"dist"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.10",
"@types/react": "^18.3.12",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.4.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@azure/msal-react": "^2.2.0"
},
"peerDependencies": {
"@azure/msal-browser": "^3.27.0",
"react": "^16.8.0 || ^17 || ^18"
},
"type": "module",
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}