ToolJet/plugins/packages/rethinkdb/package.json
Kiran Ashok 9a83f99bd1
Plugin: RethinkDB datasource (#2724)
* types intial

* manifest intial updates

* sample operation

* initial

* sample operation

* updating defaults

* test connection and crate table operation

* retreive insert updates

* updates

* updates

* cleanup all basic operation

* code refactor

* connection adding auth update

* updating insert bug

* cleanup , fixing bug with insert and update

* code cleanup :: using default databse if name not provided

* fixing bug in list documents

* cleanup

* icon updated

* docs updated

* reverting

* reverting

* revert

* revert

* optimizing

* typo fixed :: pr changes

* alignment fix

* bug correction

* reverting rethinkdb installation outside plugins

* updating types

* reverting unintentional changes

* updates

* key mismatch

* updated docs info

* typo bug :: create table

* revert

* reverting rethinkdb installation
2022-04-08 17:13:38 +05:30

24 lines
563 B
JSON

{
"name": "@tooljet-plugins/rethinkdb",
"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": {
"@tooljet-plugins/common": "file:../common",
"react": "^17.0.2",
"rethinkdb": "^2.4.2"
}
}