ToolJet/plugins/packages/dynamodb/package.json
Midhun G S c8fe500a1d
Migrated aws-sdk v2 to v3 (#15023)
* chore: update bcrypt to version 6.0.0 in package.json

* chore: remove unused devDependencies from package.json

* Refactor code structure for improved readability and maintainability

* Refactor code structure for improved readability and maintainability
2026-02-04 17:27:17 +05:30

27 lines
No EOL
672 B
JSON

{
"name": "@tooljet-plugins/dynamodb",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"build": "tsc -b",
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
},
"dependencies": {
"@tooljet-plugins/common": "file:../common",
"@aws-sdk/client-dynamodb": "^3.971.0",
"@aws-sdk/client-sts": "^3.971.0",
"@aws-sdk/credential-providers": "^3.971.0",
"@aws-sdk/lib-dynamodb": "^3.971.0",
"react": "^17.0.2",
"rimraf": "^3.0.2"
}
}