ToolJet/marketplace/plugins/supabase/package.json
blank0537 533878b946
Feature supabase plugin integration (#9213)
* Feature Supabase plugin implementation

* added limit field in get rows and changed plugin label

* resolved comments and error handling

* removed duplicate error message

* Resolved comments and Add columns reusable component added

* test connection update and types added
2024-04-05 14:14:47 +05:30

27 lines
654 B
JSON

{
"name": "@tooljet-marketplace/supabase",
"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": {
"@supabase/supabase-js": "^2.41.1",
"@tooljet-marketplace/common": "^1.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"typescript": "^4.7.4"
}
}