Files
stargue-publishing-engine/package.json
T
Angelo B. J. Luidens 339801966e Restore green type-check baseline (117 tests + tsc all pass)
Fixes 3 pre-existing TypeScript errors that vitest did not catch but
tsc --noEmit did:
- apps/mcp-linkedin/src/tools.test.ts: spread TOOL_NAMES before .sort()
  (readonly tuple has no mutating sort)
- packages/sanitize/src/corpus.test.ts: cast through unknown to FixtureMeta
- db/migrations/rehearse.ts: add 'postgres' driver dependency (also needed
  to run the migration itself)

Also: apps/admin test script uses --passWithNoTests (Stage 5 admin app has
no test files yet, vitest exited non-zero on empty).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-03 13:27:15 -04:00

31 lines
797 B
JSON

{
"name": "stargue-publishing-engine",
"version": "0.1.0",
"private": true,
"description": "Stargue Publishing Engine — automated content pipeline + LinkedIn MCP server",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"db:migrate": "bun --filter '@stargue/schema' db:migrate",
"db:migrate:rehearse": "bun --filter '@stargue/schema' db:migrate:rehearse"
},
"devDependencies": {
"@types/node": "^22.0.0",
"bun-types": "^1.3.12",
"postgres": "^3.4.5",
"turbo": "^2.3.0",
"typescript": "^5.7.0"
},
"engines": {
"bun": ">=1.1.30"
},
"packageManager": "bun@1.1.38"
}