pnpm-workspace.yaml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. packages:
  2. - 'apps/*'
  3. - 'packages/*'
  4. overrides:
  5. # flat v6 is provided only by ESM, but @lykmapipo/common requires CommonJS version
  6. '@lykmapipo/common>flat': 5.0.2
  7. # mime v4 is provided only by ESM, but @lykmapipo/common requires CommonJS version
  8. '@lykmapipo/common>mime': 3.0.0
  9. # parse-json v6 is provided only by ESM, but @lykmapipo/common requires CommonJS version
  10. '@lykmapipo/common>parse-json': 5.2.0
  11. # CVE-2025-XXXXX: CRLF Injection + Prototype Pollution combo leads to HTTP Request Smuggling (CVSS 10.0).
  12. # All versions < 1.15.0 are vulnerable.
  13. axios: ^1.15.0
  14. packageExtensions:
  15. # @orval/core bundles @stoplight/json-ref-resolver which requires lodash/get at runtime,
  16. # but @orval/core does not declare lodash as a dependency.
  17. '@orval/core':
  18. dependencies:
  19. lodash: '*'
  20. patchedDependencies:
  21. # The patch excludes mathjax-full from the dependency graph of Marp Core.
  22. '@marp-team/marp-core': packages/presentation/patches/@marp-team__marp-core.patch
  23. # pnpm v11+ unified allowlist: true=run install scripts, false=skip them.
  24. # Migrated from onlyBuiltDependencies (true) and ignoredBuiltDependencies (false).
  25. allowBuilds:
  26. lefthook: true
  27. '@swc/core': false
  28. core-js: false
  29. esbuild: false
  30. leveldown: false
  31. protobufjs: false
  32. puppeteer: false
  33. ttf2woff2: false
  34. # Prisma: apps/app's `postinstall: prisma generate` covers the work that these
  35. # packages' install scripts would do. In particular, `prisma generate` itself
  36. # downloads the engine binary on demand (verified by removing
  37. # libquery_engine-*.so.node and re-running `prisma generate` — the binary is
  38. # restored byte-for-byte), so `@prisma/engines`' postinstall is redundant here.
  39. '@prisma/client': false
  40. '@prisma/engines': false
  41. prisma: false
  42. # sharp ships platform-specific prebuilt binaries via optional dependencies
  43. # (e.g. @img/sharp-linux-x64, @img/sharp-libvips-linux-x64), so its install
  44. # script (which would build libvips from source as a fallback) is not needed.
  45. sharp: false