my pkgs monorepo
at main 19 lines 656 B view raw
1{ 2 "name": "@ewanc26/pkgs", 3 "private": true, 4 "description": "Ewan's personal package monorepo — TypeScript, Rust, and Python", 5 "scripts": { 6 "build": "pnpm -r run build", 7 "dev": "pnpm -r run dev", 8 "check": "pnpm -r run check", 9 "typecheck": "pnpm -r run type-check", 10 "test": "pnpm -r run test", 11 "clean": "pnpm -r exec -- rm -rf dist node_modules", 12 "py:check": "python3 -m py_compile packages/*/main.py packages/*/src/*.py 2>/dev/null || echo 'Some Python files have syntax errors'", 13 "py:install": "pip install -r packages/llm-analyser/requirements.txt" 14 }, 15 "engines": { 16 "node": ">=18", 17 "pnpm": ">=9" 18 } 19}