basant307/AI_Governance_Project
048
1{2 "name": "@azure/identity",3 "sdk-type": "client",4 "version": "4.13.1",5 "description": "Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID",6 "main": "./dist/commonjs/index.js",7 "module": "./dist/esm/index.js",8 "types": "./dist/commonjs/index.d.ts",9 "browser": "./dist/browser/index.js",10 "//sampleConfiguration": {11 "productName": "Azure Identity",12 "productSlugs": [13 "entra",14 "entra-id"15 ],16 "skip": [17 "interactiveBrowserCredential.js"18 ],19 "requiredResources": {20 "Register an app with the Microsoft identity platform": "https://learn.microsoft.com/entra/identity-platform/quickstart-register-app",21 "Set and retrieve a secret from Azure Key Vault": "https://learn.microsoft.com/azure/key-vault/secrets/quick-create-portal"22 }23 },24 "files": [25 "dist/",26 "README.md",27 "LICENSE"28 ],29 "//metadata": {30 "constantPaths": [31 {32 "path": "src/constants.ts",33 "prefix": "SDK_VERSION"34 }35 ]36 },37 "engines": {38 "node": ">=20.0.0"39 },40 "repository": "github:Azure/azure-sdk-for-js",41 "keywords": [42 "azure",43 "cloud",44 "entra id",45 "authentication",46 "credential",47 "certificate",48 "managed identity",49 "client secret",50 "access token"51 ],52 "author": "Microsoft Corporation",53 "license": "MIT",54 "bugs": {55 "url": "https://github.com/Azure/azure-sdk-for-js/issues"56 },57 "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity/README.md",58 "sideEffects": false,59 "dependencies": {60 "@azure/abort-controller": "^2.0.0",61 "@azure/core-auth": "^1.9.0",62 "@azure/core-client": "^1.9.2",63 "@azure/core-rest-pipeline": "^1.17.0",64 "@azure/core-tracing": "^1.0.0",65 "@azure/core-util": "^1.11.0",66 "@azure/logger": "^1.0.0",67 "@azure/msal-browser": "^5.5.0",68 "@azure/msal-node": "^5.1.0",69 "open": "^10.1.0",70 "tslib": "^2.2.0"71 },72 "devDependencies": {73 "@azure/keyvault-keys": "4.10.0",74 "@types/jsonwebtoken": "^9.0.0",75 "@types/ms": "^2.1.0",76 "@types/node": "^20.19.0",77 "@vitest/browser": "^3.2.3",78 "@vitest/coverage-istanbul": "^3.2.3",79 "assertion-error": "^2.0.1",80 "dotenv": "^16.0.0",81 "eslint": "^9.33.0",82 "jsonwebtoken": "^9.0.0",83 "ms": "^2.1.3",84 "playwright": "^1.50.1",85 "typescript": "~5.8.3",86 "vitest": "^3.2.3",87 "@azure-tools/test-recorder": "^4.1.1",88 "@azure/eslint-plugin-azure-sdk": "^3.0.0",89 "@azure/dev-tool": "^1.0.0",90 "@azure-tools/test-utils-vitest": "^2.0.1"91 },92 "type": "module",93 "tshy": {94 "project": "../../../tsconfig.src.build.json",95 "exports": {96 "./package.json": "./package.json",97 ".": "./src/index.ts"98 },99 "dialects": [100 "esm",101 "commonjs"102 ],103 "esmDialects": [104 "workerd",105 "browser"106 ],107 "selfLink": false108 },109 "exports": {110 "./package.json": "./package.json",111 ".": {112 "workerd": {113 "types": "./dist/workerd/index.d.ts",114 "default": "./dist/workerd/index.js"115 },116 "browser": {117 "types": "./dist/browser/index.d.ts",118 "default": "./dist/browser/index.js"119 },120 "import": {121 "types": "./dist/esm/index.d.ts",122 "default": "./dist/esm/index.js"123 },124 "require": {125 "types": "./dist/commonjs/index.d.ts",126 "default": "./dist/commonjs/index.js"127 }128 }129 },130 "scripts": {131 "build": "npm run clean && dev-tool run build-package && dev-tool run extract-api",132 "build:samples": "tsc -p tsconfig.samples.json",133 "check-format": "dev-tool run vendored prettier --list-different --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",134 "clean": "dev-tool run vendored rimraf --glob dist dist-* types *.tgz *.log",135 "execute:samples": "dev-tool samples run samples-dev",136 "extract-api": "dev-tool run build-package && dev-tool run extract-api",137 "format": "dev-tool run vendored prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"",138 "lint": "eslint package.json src test --ignore-pattern 'test/integration/**'",139 "lint:fix": "eslint package.json src test --fix --fix-type [problem,suggestion] --ignore-pattern 'test/integration/**'",140 "pack": "pnpm pack 2>&1",141 "test": "npm run test:node && npm run test:browser",142 "test:browser": "npm run clean && dev-tool run build-package && dev-tool run build-test && dev-tool run test:vitest --browser",143 "test:node": "dev-tool run build-test --no-browser-test && dev-tool run test:vitest",144 "test:node:managed-identity": "dev-tool run test:vitest -- --config ./vitest.managed-identity.config.ts",145 "test:node:no-timeouts": "dev-tool run test:vitest -- --test-timeout=0",146 "update-snippets": "dev-tool run update-snippets"147 }148}