bwc-cli
Version:
CLI tool for installing Claude Code subagents and commands
66 lines • 1.51 kB
JSON
{
"name": "bwc-cli",
"version": "1.0.0",
"description": "CLI tool for installing Claude Code subagents and commands",
"keywords": [
"claude",
"ai",
"cli",
"subagents",
"commands",
"buildwithclaude",
"bwc",
"claude-code"
],
"homepage": "https://buildwithclaude.com",
"repository": {
"type": "git",
"url": "https://github.com/davepoon/claude-code-subagents-collection.git",
"directory": "packages/bwc-cli"
},
"license": "MIT",
"author": "Dave Poon",
"type": "module",
"bin": {
"bwc": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src --ext ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"release": "changeset publish"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"got": "^14.0.0",
"inquirer": "^9.2.12",
"ora": "^8.0.1",
"update-notifier": "^7.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@types/update-notifier": "^6.0.8",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}