bitch-cli/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@lilith/bitch",
"version": "1.0.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": "tsc",
"dev": "tsc --watch",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm build"
},
"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"
},
"devDependencies": {
"@lilith/configs": "^1.2.0",
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
},
"files": [
"dist",
"bin"
],
"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"
}