claude-buddy
Version:
Claude Buddy installation and setup script
54 lines (53 loc) • 1.09 kB
JSON
{
"name": "claude-buddy",
"version": "3.0.10",
"description": "Claude Buddy installation and setup script",
"main": "install.js",
"bin": {
"claude-buddy": "./install.js"
},
"scripts": {
"test": "jest",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prebuild": "rm -rf dist",
"build": "node scripts/bundle-dist.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude-buddy",
"setup",
"installation",
"cli"
],
"author": "",
"license": "MIT",
"files": [
"lib/",
"dist/",
"scripts/",
"install.js",
"README.md",
"CHANGELOG.md",
"TROUBLESHOOTING.md"
],
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"prompts": "^2.4.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"eslint": "^8.48.0",
"jest": "^29.6.4"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}