cerberus-claude-cli
Version:
CLI tool for preparing files and projects for Claude AI. Collect, organize, and analyze source code files to create comprehensive project contexts.
67 lines (66 loc) • 1.76 kB
JSON
{
"name": "cerberus-claude-cli",
"version": "1.0.0",
"description": "CLI tool for preparing files and projects for Claude AI. Collect, organize, and analyze source code files to create comprehensive project contexts.",
"main": "bin/cerberus.js",
"bin": {
"cerberus": "./bin/cerberus.js"
},
"type": "commonjs",
"scripts": {
"start": "node bin/cerberus.js",
"cli": "node bin/cerberus.js",
"lint": "npx eslint src bin",
"lint:fix": "npx eslint src bin --fix",
"format": "prettier --write \"src/**/*.{js,json}\" \"bin/**/*.{js,json}\"",
"test": "npx jest",
"test:watch": "npx jest --watch",
"test:file": "npx jest --testPathPattern",
"check": "npm test && echo 'All tests passed!'",
"prepublishOnly": "npm test"
},
"engines": {
"node": ">=16.0.0"
},
"keywords": [
"cli",
"file-management",
"project-management",
"claude",
"ai",
"claude-ai",
"project-analysis",
"code-organization",
"file-bundling"
],
"author": "freema",
"license": "MIT",
"homepage": "https://github.com/freema/cerberus#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/freema/cerberus.git"
},
"bugs": {
"url": "https://github.com/freema/cerberus/issues"
},
"dependencies": {
"axios": "^1.6.7",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"conf": "^10.2.0",
"dotenv": "^16.4.5",
"inquirer": "^8.2.6",
"ora": "^5.4.1",
"glob": "^8.1.0",
"fs-extra": "^11.2.0",
"figlet": "^1.7.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.7.0",
"prettier": "^3.1.1"
}
}