pdf-codec 3.0.11 → 3.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -4
package/README.md CHANGED
@@ -279,7 +279,7 @@ Release, CI, and commit-message conventions are all workspace-wide, not package-
279
279
 
280
280
  ## Contributing
281
281
 
282
- Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/pdf-codec/`; see the [root README](../../README.md#contributing) for the shared git hooks and history conventions. The package's own scripts are turbo-wrapped:
282
+ Conventional Commits, enforced workspace-wide by commitlint through a root `commit-msg` hook. Work inside `packages/pdf-codec/`; see [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions. The package's own scripts are turbo-wrapped:
283
283
 
284
284
  ```sh
285
285
  pnpm build # tsdown (ESM + CJS + .d.ts)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdf-codec",
3
- "version": "3.0.11",
3
+ "version": "3.0.12",
4
4
  "description": "Hand-written, dependency-minimal PDF codec: parses arbitrary real-world PDFs and generates new ones, built on its own codec-owned LayoutDocument item model and Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -51,9 +51,10 @@
51
51
  "prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
52
52
  "lint": "turbo run _lint",
53
53
  "_lint": "eslint . --fix --cache --max-warnings 0",
54
- "typecheck": "turbo run _typecheck _typecheck:node",
54
+ "typecheck": "turbo run _typecheck _typecheck:node _typecheck:attw",
55
55
  "_typecheck": "tsc -p tsconfig.json",
56
56
  "_typecheck:node": "tsc -p tsconfig.node.json",
57
+ "_typecheck:attw": "attw --pack",
57
58
  "test": "turbo run _test",
58
59
  "_test": "vitest run --project unit",
59
60
  "test:workers": "turbo run _test:workers",
@@ -81,8 +82,8 @@
81
82
  "license": "MIT",
82
83
  "packageManager": "pnpm@11.6.0",
83
84
  "dependencies": {
84
- "byte-codec": "^1.1.12",
85
- "document-schema.js": "^4.3.6",
85
+ "byte-codec": "^1.1.13",
86
+ "document-schema.js": "^4.3.7",
86
87
  "fflate": "^0.8.3",
87
88
  "zod": "^4.4.3"
88
89
  },