phind-cli
Version:
A modern, intuitive, cross-platform command-line tool for finding files and directories recursively, designed with developers in mind.
75 lines (74 loc) • 2.09 kB
JSON
{
"name": "phind-cli",
"version": "3.1.0",
"description": "A modern, intuitive, cross-platform command-line tool for finding files and directories recursively, designed with developers in mind.",
"bin": {
"phind": "bin/cli.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"start": "node bin/cli.js",
"dev": "ts-node src/cli.ts",
"test": "jest --config jest.config.js",
"test:watch": "jest --config jest.config.js --watchAll",
"test:coverage": "jest --config jest.config.js --coverage",
"version:patch": "npm version patch -m \"chore(release): bump version to %s\"",
"version:minor": "npm version minor -m \"feat(release): bump version to %s\"",
"version:major": "npm version major -m \"BREAKING(release): bump version to %s\"",
"postversion": "echo \"Version bumped. Remember to push commit and tags: git push && git push --tags\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodesman/phind-cli.git"
},
"homepage": "https://github.com/nodesman/phind-cli#readme",
"bugs": {
"url": "https://github.com/nodesman/phind-cli/issues"
},
"keywords": [
"find",
"phind",
"cli",
"file",
"search",
"cross-platform",
"utility",
"typescript",
"find-files",
"ai",
"gemini"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.16.0",
"micromatch": "^4.0.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.0.0",
"@types/tmp": "^0.2.6",
"@types/yargs": "^17.0.24",
"cross-spawn": "^7.0.6",
"fs-extra": "^11.3.0",
"jest": "^29.7.0",
"tmp": "^0.2.3",
"ts-jest": "^29.3.1",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/**/*",
"README.md",
"LICENSE"
]
}