91 lines
3.1 KiB
JSON
91 lines
3.1 KiB
JSON
{
|
|
"name": "@azure/keyvault-common",
|
|
"version": "2.1.0",
|
|
"description": "Common internal functionality for all of the Azure Key Vault clients in the Azure SDK for JavaScript",
|
|
"sdk-type": "client",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"main": "./dist/commonjs/index.js",
|
|
"browser": "./dist/browser/index.js",
|
|
"module": "./dist/esm/index.js",
|
|
"types": "./dist/commonjs/index.d.ts",
|
|
"files": [
|
|
"dist/",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"repository": "github:Azure/azure-sdk-for-js",
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
},
|
|
"keywords": [
|
|
"azure",
|
|
"cloud",
|
|
"typescript"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
|
|
},
|
|
"homepage": "https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/keyvault/keyvault-common/README.md",
|
|
"sideEffects": false,
|
|
"prettier": "@azure/eslint-plugin-azure-sdk/prettier.json",
|
|
"dependencies": {
|
|
"@azure-rest/core-client": "^2.3.3",
|
|
"@azure/abort-controller": "^2.0.0",
|
|
"@azure/core-auth": "^1.3.0",
|
|
"@azure/core-rest-pipeline": "^1.8.0",
|
|
"@azure/core-tracing": "^1.0.0",
|
|
"@azure/core-util": "^1.10.0",
|
|
"@azure/logger": "^1.1.4",
|
|
"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",
|
|
"playwright": "^1.58.2",
|
|
"prettier": "^3.6.2",
|
|
"rimraf": "^6.1.0",
|
|
"typescript": "~6.0.2",
|
|
"vitest": "^4.1.2",
|
|
"@azure-tools/test-utils-vitest": "^2.0.1",
|
|
"@azure/eslint-plugin-azure-sdk": "^3.0.0",
|
|
"@azure/dev-tool": "^1.0.0"
|
|
},
|
|
"type": "module",
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": {
|
|
"browser": {
|
|
"types": "./dist/browser/index.d.ts",
|
|
"default": "./dist/browser/index.js"
|
|
},
|
|
"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-* temp types *.tgz *.log",
|
|
"execute:samples": "dev-tool samples run samples-dev",
|
|
"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 build-test --no-browser-test && dev-tool run test:vitest --no-test-proxy",
|
|
"update-snippets": "dev-tool run update-snippets"
|
|
}
|
|
} |