ToolJet/cli/package.json
Arpit d1ec7942d1
Improvements : ToolJet CLI (#6155)
* remove repo url prompt for creating a new plugin

* deprecating : creating new plugins for datasource/plugins

* package version upgraded to v0.0.14

* fixes: delete cmd

* delete prompt confirms marketplace plugins

* removes repo from json
2023-06-07 16:27:58 +05:30

82 lines
No EOL
2.1 KiB
JSON

{
"name": "@tooljet/cli",
"description": "tooljet cli tool",
"version": "0.0.14",
"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"
}