Files
blackroad-os-pack-finance/package.json
Alexa Louise 0d1d083485
Some checks failed
Auto Deploy PR / detect-and-deploy (push) Has been cancelled
Deploy to Railway / build (push) Has been cancelled
Deploy to Railway / deploy (push) Has been cancelled
Stale Issue Cleanup / stale (push) Failing after 1m13s
Pi deployment mega-session: 136+ containers deployed
Massive deployment session deploying entire BlackRoad/Lucidia infrastructure to Raspberry Pi 4B:
- Cleaned /tmp space: 595MB → 5.2GB free
- Total containers: 136+ running simultaneously
- Ports: 3067-3200+
- Disk: 25G/29G (92% usage)
- Memory: 3.6Gi/7.9Gi

Deployment scripts created:
- /tmp/continue-deploy.sh (v2-* deployments)
- /tmp/absolute-final-deploy.sh (final-* deployments)
- /tmp/deployment-status.sh (monitoring)

Infrastructure maximized on single Pi 4B (8GB RAM, 32GB SD).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-22 23:10:31 -06:00

40 lines
1.0 KiB
JSON

{
"name": "@blackroad-os/pack-finance",
"version": "0.1.0",
"type": "module",
"description": "Finance Pack for BlackRoad OS - budgeting, reconciliation, and financial forecasting",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --ext .ts",
"clean": "rm -rf dist",
"fmt": "prettier --write agents workflows lib",
"postbuild": "python scripts/postbuild.py"
},
"keywords": ["blackroad-os", "finance", "budgeting", "reconciliation"],
"author": "BlackRoad OS",
"license": "MIT",
"dependencies": {
"decimal.js": "^10.4.3",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^9.4.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8",
"ts-jest": "^29.1.1",
"typescript": "^5.4.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}