New workspace-specific CLI for @packages operations: - consumers find/update commands - publish pending/package commands - ci-status command Ported from bash scripts to TypeScript for better maintainability. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
37 lines
748 B
JSON
37 lines
748 B
JSON
{
|
|
"name": "@lilith/packages-cli",
|
|
"version": "0.1.0",
|
|
"description": "CLI for @packages workspace operations",
|
|
"type": "module",
|
|
"bin": {
|
|
"packages-cli": "./bin/packages-cli.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^12.1.0",
|
|
"chalk": "^5.3.0",
|
|
"ora": "^8.1.1",
|
|
"glob": "^10.4.5",
|
|
"execa": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"typescript": "^5.7.0"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"workspace",
|
|
"packages",
|
|
"monorepo"
|
|
],
|
|
"author": "Lilith",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://forge.nasty.sh/lilith/packages-cli.git"
|
|
}
|
|
}
|