mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-02 02:47:27 +00:00
* harperdb plugin initial commit * added required fields in manifest and provided default values in operation json * removed not required query options from harperdb * review changes inprogress * added new fields in manifest file to customize port and protocol * protocol drop down in harperdb is changed to ssl toggle
27 lines
641 B
JSON
27 lines
641 B
JSON
{
|
|
"name": "@tooljet-marketplace/harperdb",
|
|
"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",
|
|
"harperive": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.34.0",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|