mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* Feature/add couchbase support (#14518) * Add support for couchbase * Update readme * Update query operation --------- Co-authored-by: Midhun G S <gsmithun4@gmail.com> * Fix: Couchbase UI fixes (#15194) * Fix: couchbase ui fixes * Feature/add couchbase support (#14518) * Add support for couchbase * Update readme * Update query operation --------- Co-authored-by: Midhun G S <gsmithun4@gmail.com> * Fix: couchbase ui fixes * ui-fix: removed AI tag from couchbase --------- Co-authored-by: Rudhra Deep Biswas <rudra21ultra@gmail.com> Co-authored-by: Prajwal Pai <108796209+prajwal-pai77@users.noreply.github.com> Co-authored-by: Midhun G S <gsmithun4@gmail.com> * Feat: Add S3 upload script and command to package.json * auto redirect has been enabled --------- Co-authored-by: Prajwal Pai <108796209+prajwal-pai77@users.noreply.github.com> Co-authored-by: Sahil Dewangan <123866478+sahil7303@users.noreply.github.com> Co-authored-by: Rudhra Deep Biswas <rudra21ultra@gmail.com> Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com>
26 lines
615 B
JSON
26 lines
615 B
JSON
{
|
|
"name": "@tooljet-marketplace/couchbase",
|
|
"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": {
|
|
"@tooljet-marketplace/common": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^4.7.4",
|
|
"@vercel/ncc": "^0.34.0"
|
|
}
|
|
}
|