You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP →

@aws-lambda-powertools/batch

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aws-lambda-powertools/batch - npm Package Compare versions

Comparing version

to
2.0.0-alpha.0

{
"name": "@aws-lambda-powertools/batch",
"version": "1.14.0",
"version": "2.0.0-alpha.0",
"description": "The batch processing package for the Powertools for AWS Lambda (TypeScript) library.",

@@ -27,7 +27,32 @@ "author": {

],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/index.d.ts",
"files": [
"lib"
]
],
"type": "module",
"exports": {
".": {
"require": {
"types": "./lib/cjs/index.d.ts",
"default": "./lib/cjs/index.js"
},
"import": {
"types": "./lib/esm/index.d.ts",
"default": "./lib/esm/index.js"
}
},
"./types": {
"import": "./lib/esm/types.js",
"require": "./lib/cjs/types.js"
}
},
"typesVersions": {
"*": {
"types": [
"lib/cjs/types.d.ts",
"lib/esm/types.d.ts"
]
}
}
}