This commit removes deprecated dependencies from the CLI and updates the yarn.lock file to reflect these changes. It also adds new dependencies that are needed for the project. The dependencies removed are "@types/mocha", "ansi-colors", "browser-stdout", "camelcase", "chokidar", "cliui", "debug", "decamelize", "diff", "find-up", "flat", "glob", "he", and "is-plain-obj". The dependencies added include "@types/treeify", "cli-cursor", "emoji-regex", "is-interactive", "is-unicode-supported",
74 lines
1.6 KiB
JSON
74 lines
1.6 KiB
JSON
{
|
|
"name": "@psw-ui/cli",
|
|
"description": "CLI for PSW/UI",
|
|
"version": "0.1.0",
|
|
"author": "p-sw",
|
|
"bin": {
|
|
"pswui": "./bin/run.js"
|
|
},
|
|
"bugs": "https://github.com/p-sw/ui/issues",
|
|
"dependencies": {
|
|
"@oclif/core": "^4",
|
|
"@oclif/plugin-help": "^6",
|
|
"@oclif/plugin-plugins": "^5",
|
|
"@types/treeify": "^1.0.3",
|
|
"ora": "^8.0.1",
|
|
"treeify": "^1.1.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"devDependencies": {
|
|
"@oclif/prettier-config": "^0.2.1",
|
|
"@oclif/test": "^4",
|
|
"@types/chai": "^4",
|
|
"@types/node": "^18",
|
|
"chai": "^4",
|
|
"eslint": "^8",
|
|
"eslint-config-oclif": "^5",
|
|
"eslint-config-oclif-typescript": "^3",
|
|
"eslint-config-prettier": "^9",
|
|
"oclif": "^4",
|
|
"shx": "^0.3.3",
|
|
"ts-node": "^10",
|
|
"typescript": "^5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": [
|
|
"/bin",
|
|
"/dist",
|
|
"/oclif.manifest.json"
|
|
],
|
|
"homepage": "https://github.com/p-sw/ui",
|
|
"keywords": [
|
|
"oclif"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"type": "module",
|
|
"oclif": {
|
|
"bin": "pswui",
|
|
"dirname": "pswui",
|
|
"commands": "./dist/commands",
|
|
"plugins": [
|
|
"@oclif/plugin-help",
|
|
"@oclif/plugin-plugins"
|
|
],
|
|
"topicSeparator": " ",
|
|
"topics": {
|
|
"hello": {
|
|
"description": "Say hello to the world and others"
|
|
}
|
|
}
|
|
},
|
|
"repository": "p-sw/ui",
|
|
"scripts": {
|
|
"build": "shx rm -rf dist && tsc",
|
|
"lint": "eslint . --ext .ts",
|
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
"prepack": "oclif manifest && oclif readme",
|
|
"version": "oclif readme && git add README.md"
|
|
},
|
|
"types": "dist/index.d.ts"
|
|
}
|