mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* feat: add user avatar
* update: @nest/platform-express from 8.0.0 to 8.4.4
* add avatar_id in login response
* add user avatar upload in frontend
* align cross divider with layout icons'
* generate nest model - extensions
* Add extensions module
* Add extension to datasouce
* add not implemented check
* create extension
* refactor
* cleanup
* fix tests
* reduce the avatar size on homepage
* poc: run js code from string
* resolve conflicts
* fix conflicts
* add globals
* add new route
* add icon, manifest file upload
* complete user flow
* add flow for data queries
* add dynamic manifest instead of local datasource types
* add version attr
* remove unused code
* add version
* rename extension(s) -> plugins(s)
* add test connection method
* feat: add marketplace listing page
* Add install plugin cmd + missing attrs {name, repo, desc} to plugin
* add missing icon
* - Add npm workspaces for marketplace monorepo
- Added cassandra datasource plugin
- Created upload to s3 script
- Created plugins.json entry file
* install plugin from s3 bucket
* cleanup
* update pkg locks
* fix icon render
* cleanup
* marketplace changes
* ui changes
* operations file load fix + revert vm2
* update module from string to 3.2.1
* load plugins.json from local file instead of remote
* install plugin from local file if not production environment
* add sqlite
* feat: add plivo api plugin
* exp: add heroku 22 stack
* update assets include path
* Revert "exp: add heroku 22 stack"
This reverts commit a8926b36e1.
* add integrations link
* Add casl ability for plugin
* load host from env else fallback to default
* update imports
* remove sqlite
* typo
* add marketplace flag to cli command
* move ts and ncc to devDep
* add hygen templates for marketplace
* cli tree-node path fix
* template indent fix
* TOOLJET_URL -> MARKETPLACE_TOOLJET_URL
* add tests
* refactor: move to plugins.helper for get-service helper utility
* fix; typo
* update package-lock.json
* review changes
* remove a href
* remove bg color + redirect issue due to href
* add test url
* fix crash on search
* remove extra slash
* feat: allow plugin to be installed from github repository
* remove unwanted args from cli command
* add repo attr while save
* feat: add feature toggle for marketplace feature
* fix: make default config as false
* chore: remove hyperlink
* fix: failing build
* chore: update s3 url to point to prod
* fix failing test
* fix test
* fix: test case
* update module from string pkg
* update env
* fix test
* fix test
* add readme file
* Update README.md
Co-authored-by: Akshay Sasidharan <akshaysasidharan93@gmail.com>
82 lines
No EOL
2.1 KiB
JSON
82 lines
No EOL
2.1 KiB
JSON
{
|
|
"name": "@tooljet/cli",
|
|
"description": "tooljet cli tool",
|
|
"version": "0.0.13",
|
|
"bin": {
|
|
"tooljet": "./bin/run"
|
|
},
|
|
"bugs": "https://github.com/tooljet/tooljet/issues",
|
|
"dependencies": {
|
|
"@oclif/core": "^1.6.0",
|
|
"@oclif/plugin-help": "^5.1.12",
|
|
"@oclif/plugin-plugins": "^2.1.0",
|
|
"@types/inquirer": "^8.1.3",
|
|
"hygen": "^6.2.0",
|
|
"inquirer": "^7.3.3",
|
|
"rimraf": "^3.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/test": "^2",
|
|
"@types/chai": "^4",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.9.4",
|
|
"@types/node-notifier": "^8.0.2",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"chai": "^4",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-oclif": "^4",
|
|
"eslint-config-oclif-typescript": "^1.0.2",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^3.4.1",
|
|
"globby": "^11",
|
|
"mocha": "^9",
|
|
"oclif": "^2.0.0-main.10",
|
|
"shx": "^0.3.3",
|
|
"ts-node": "^10.2.1",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"dirname": "oex",
|
|
"engines": {
|
|
"node": ">=12.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/npm-shrinkwrap.json",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"homepage": "https://github.com/tooljet/tooljet",
|
|
"keywords": [
|
|
"tooljet",
|
|
"tooljet-cli"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"oclif": {
|
|
"bin": "tooljet",
|
|
"commands": "./dist/commands",
|
|
"plugins": [],
|
|
"topicSeparator": " ",
|
|
"topics": {
|
|
"plugin": {
|
|
"description": "manage plugins options: create, delete and install"
|
|
}
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tooljet/tooljet.git"
|
|
},
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc -b",
|
|
"lint": "eslint . '**/*.ts'",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"posttest": "npm run lint",
|
|
"prepack": "npm run build && oclif manifest && oclif readme",
|
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"types": "dist/index.d.ts"
|
|
} |