file-organize
Version:
CLI tool for categorizing files
72 lines (71 loc) • 1.4 kB
JSON
{
"name": "file-organize",
"version": "0.1.2",
"description": "CLI tool for categorizing files",
"author": "Athaariq Ardhiansyah <foss@athaariq.my.id>",
"license": "MIT",
"bin": {
"file-organize": "./lib/index.cjs"
},
"keywords": [
"cli",
"categorize",
"file-organize",
"files",
"organize",
"directory",
"sort"
],
"engines": {
"node": ">=16.0.0"
},
"main": "./lib/index.cjs",
"files": [
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "prettier . --check",
"build": "rollup -c",
"test": "jest",
"format": "prettier . --write",
"pkg": "pkg ."
},
"pkg": {
"targets": [
"node16-macos-x64",
"node16-linux-x64",
"node16-win-x64"
],
"outputPath": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/himanshuc3/file-organize"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"esbuild": "^0.23.0",
"jest": "^29.7.0",
"pkg": "^5.8.1",
"prettier": "^3.3.3",
"rollup": "^4.20.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"boxen": "4.0",
"chalk": "2.4",
"debug": "^4.4.1",
"inquirer": "^8.2.5",
"tree-console": "^1.2.1",
"yargs": "^17.7.2"
}
}