mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* Add list containers feature * Add list blobs with pagination feature * Add blob upload functionality * Add read and delete blob functionality * Change page limit keyname for listing blobs * fixed test connection false positive issye - added create container option * update default encoding type --------- Co-authored-by: vishnu r kumar <rkumar.vishnu28@gmail.com> Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com>
24 lines
582 B
JSON
24 lines
582 B
JSON
{
|
|
"name": "@tooljet-plugins/azureblobstorage",
|
|
"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"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@azure/storage-blob": "^12.12.0",
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"react": "^17.0.2"
|
|
}
|
|
}
|