This commit is contained in:
2025-01-04 00:34:03 +01:00
parent 41829408dc
commit 0ca14bbc19
18111 changed files with 1871397 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
{
"name": "@smithy/util-retry",
"version": "3.0.0",
"description": "Shared retry utilities to be used in middleware packages.",
"main": "./dist-cjs/index.js",
"module": "./dist-es/index.js",
"author": {
"name": "AWS SDK for JavaScript Team",
"url": "https://aws.amazon.com/javascript/"
},
"license": "Apache-2.0",
"dependencies": {
"@smithy/service-error-classification": "^3.0.0",
"@smithy/types": "^3.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^16.18.96",
"concurrently": "7.0.0",
"downlevel-dts": "0.10.1",
"rimraf": "3.0.2",
"typedoc": "0.23.23"
},
"types": "./dist-types/index.d.ts",
"engines": {
"node": ">=16.0.0"
},
"typesVersions": {
"<4.0": {
"types/*": [
"types/ts3.4/*"
]
}
},
"files": [
"dist-*/**"
],
"homepage": "https://github.com/awslabs/smithy-typescript/tree/master/packages/util-retry",
"repository": {
"type": "git",
"url": "https://github.com/awslabs/smithy-typescript.git",
"directory": "packages/util-retry"
},
"typedoc": {
"entryPoint": "src/index.ts"
},
"publishConfig": {
"directory": ".release/package"
}
}