39 lines
799 B
JSON
39 lines
799 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": "tsup",
|
|
"dev": "tsc --watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"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",
|
|
"tsup": "^8.5.1"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"workspace",
|
|
"packages",
|
|
"monorepo"
|
|
],
|
|
"author": "Lilith",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "http://forge.black.lan/lilith/packages-cli.git"
|
|
}
|
|
}
|