bitch-cli/package.json

56 lines
1.2 KiB
JSON

{
"name": "@lilith/bitch",
"version": "1.2.0",
"description": "Global development CLI for managing packages across workspaces",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"bitch": "./bin/bitch.js"
},
"scripts": {
"build": "tsup",
"dev": "tsc --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"clean": "rm -rf dist"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"glob": "^10.4.5",
"ora": "^8.1.1",
"simple-git": "^3.27.0",
"undici": "^6.21.0",
"yaml": "^2.6.1",
"zod": "^3.22.0"
},
"devDependencies": {
"@lilith/configs": "2.1.0-dev.1769038232",
"@types/node": "^22.10.0",
"tsup": "^8.5.1",
"typescript": "^5.7.0"
},
"files": [
"dist",
"bin",
"templates"
],
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "https://forge.nasty.sh/lilith/bitch.git"
},
"keywords": [
"cli",
"development",
"monorepo",
"packages",
"lilith"
],
"author": "Lilith Platform",
"license": "UNLICENSED"
}