treecat
Version:
View folder structure like tree and display file contents like cat — all in one CLI.
54 lines • 1.17 kB
JSON
{
"name": "treecat",
"version": "1.0.2",
"description": "View folder structure like tree and display file contents like cat — all in one CLI.",
"keywords": [
"cli",
"tree",
"cat",
"file-system",
"terminal",
"folder-structure"
],
"homepage": "https://github.com/nzingx/treecat#readme",
"bugs": {
"url": "https://github.com/nzingx/treecat/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nzingx/treecat.git"
},
"author": "nzingx",
"license": "MIT",
"type": "module",
"main": "bin/treecat.mjs",
"bin": {
"treecat": "./bin/treecat.mjs"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/treecat.mjs",
"test": "echo \"No test specified\" && exit 0"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"archiver": "^7.0.1",
"commander": "^14.0.0",
"ignore": "^7.0.5",
"inquirer": "^12.6.3",
"micromatch": "^4.0.8",
"minimalist": "^1.0.0",
"minimist": "^1.2.8",
"treecat": "file:treecat-1.0.1.tgz"
},
"devDependencies": {
"javascript-obfuscator": "^4.1.1"
}
}