mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* initialize clickup plugin, add getConnection and testConnection Signed-off-by: thesynthax <kushagra1403@gmail.com> * including the openapi yaml Signed-off-by: thesynthax <kushagra1403@gmail.com> * trying to attach the openapi spec Signed-off-by: thesynthax <kushagra1403@gmail.com> * Fix key casing mismatch * Update copywriting * Fix clickup logic * Filter limited operation request * Add error standardisation * Fix asterik symbol position * Fix copywriting * Fix wrong URL * Fix asterisk gapping * Handle array types * Update marketplace package-lock.json * Add the same package-lock as release branch * chore: update package-lock.json --------- Signed-off-by: thesynthax <kushagra1403@gmail.com> Co-authored-by: thesynthax <kushagra1403@gmail.com> Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com>
26 lines
613 B
JSON
26 lines
613 B
JSON
{
|
|
"name": "@tooljet-marketplace/clickup",
|
|
"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"
|
|
}
|
|
}
|