2026-01-10 06:52:54 -08:00
|
|
|
{
|
2026-01-16 20:39:02 -08:00
|
|
|
"name": "@lilith/bitch",
|
2026-01-11 05:56:45 -08:00
|
|
|
"version": "1.2.0",
|
2026-01-10 06:52:54 -08:00
|
|
|
"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": {
|
2026-01-21 12:33:00 -08:00
|
|
|
"build": "tsup",
|
2026-01-10 06:52:54 -08:00
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"lint": "eslint src/",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
2026-01-21 12:33:00 -08:00
|
|
|
"prepublishOnly": "pnpm build",
|
|
|
|
|
"clean": "rm -rf dist"
|
2026-01-10 06:52:54 -08:00
|
|
|
},
|
|
|
|
|
"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",
|
2026-01-11 05:56:45 -08:00
|
|
|
"yaml": "^2.6.1",
|
|
|
|
|
"zod": "^3.22.0"
|
2026-01-10 06:52:54 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-01-16 20:39:02 -08:00
|
|
|
"@lilith/configs": "workspace:*",
|
2026-01-10 06:52:54 -08:00
|
|
|
"@types/node": "^22.10.0",
|
2026-01-21 12:33:00 -08:00
|
|
|
"typescript": "^5.7.0",
|
|
|
|
|
"tsup": "^8.5.1"
|
2026-01-10 06:52:54 -08:00
|
|
|
},
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
2026-01-11 05:56:45 -08:00
|
|
|
"bin",
|
|
|
|
|
"templates"
|
2026-01-10 06:52:54 -08:00
|
|
|
],
|
|
|
|
|
"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"
|
|
|
|
|
}
|