@azure/identity-broker
Version:
A native plugin for Azure Identity credentials to enable broker authentication such as WAM
100 lines • 3.46 kB
JSON
{
"name": "@azure/identity-broker",
"version": "1.4.0",
"sdk-type": "client",
"description": "A native plugin for Azure Identity credentials to enable broker authentication such as WAM",
"main": "./dist/commonjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/commonjs/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"repository": "github:Azure/azure-sdk-for-js",
"keywords": [
"azure",
"cloud",
"entra-id",
"WAM",
"MSA support"
],
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity-broker/README.md",
"sideEffects": false,
"dependencies": {
"@azure/core-auth": "^1.9.0",
"@azure/identity": "^4.7.0",
"@azure/msal-node": "^5.1.0",
"@azure/msal-node-extensions": "^5.1.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.19.25",
"@vitest/browser-playwright": "^4.1.2",
"@vitest/coverage-istanbul": "^4.1.2",
"cross-env": "^10.1.0",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"rimraf": "^6.1.0",
"typescript": "~6.0.2",
"vitest": "^4.1.2",
"@azure-tools/test-recorder": "^4.1.1",
"@azure/abort-controller": "^2.1.3",
"@azure/core-util": "^1.13.2",
"@azure-tools/test-utils-vitest": "^2.0.1",
"@azure/core-client": "^1.10.2",
"@azure/core-rest-pipeline": "^1.23.1",
"@azure/dev-tool": "^1.0.0",
"@azure/logger": "^1.3.1",
"@azure/eslint-plugin-azure-sdk": "^3.0.0"
},
"//sampleConfiguration": {
"productName": "Azure Identity Brokered Auth Plugin",
"productSlugs": [
"entra",
"entra-id"
],
"requiredResources": {
"Microsoft Entra App Registration": "https://learn.microsoft.com/entra/identity-platform/quickstart-register-app"
}
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"scripts": {
"build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",
"build:samples": "echo Skipped.",
"check-format": "prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"clean": "rimraf --glob dist dist-esm types \"*.tgz\" \"*.log\"",
"execute:samples": "echo skipped",
"extract-api": "dev-tool run build-package && dev-tool run extract-api",
"format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"*.{js,json}\"",
"lint": "eslint package.json src test",
"lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion]",
"pack": "pnpm pack 2>&1",
"test": "npm run test:node && npm run test:browser",
"test:browser": "echo skipped",
"test:node": "dev-tool run test:vitest -- --test-timeout 300000",
"test:node:manual": "dev-tool run test:vitest -- --timeout 300000 'test/manual/node/popTokenSupport.spec.ts'",
"update-snippets": "dev-tool run update-snippets"
}
}