mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* 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
25 lines
No EOL
616 B
JSON
25 lines
No EOL
616 B
JSON
{
|
|
"name": "@tooljet-plugins/aws-lambda",
|
|
"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": "ncc build lib/index.ts -o dist",
|
|
"watch": "ncc build lib/index.ts -o dist --watch"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@aws-sdk/client-lambda": "^3.622.0",
|
|
"@tooljet-marketplace/common": "^1.0.0",
|
|
"react": "^17.0.2",
|
|
"rimraf": "^3.0.2"
|
|
}
|
|
} |