document-mcp 2.1.23 → 2.1.25

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.
package/README.md CHANGED
@@ -236,7 +236,7 @@ Every tool that takes or produces document bytes goes through the same two hybri
236
236
 
237
237
  ## Contributing
238
238
 
239
- Release, CI, and commit-message conventions are all workspace-wide, not package-local — see the [monorepo root README](../../README.md#releases) for the release mechanism and [its Contributing section](../../README.md#contributing) for the shared git hooks and history conventions. Work inside `packages/document-mcp/`.
239
+ Release, CI, and commit-message conventions are all workspace-wide, not package-local — see the [monorepo root README](../../README.md#releases) for the release mechanism and [CONTRIBUTING.md](../../CONTRIBUTING.md) for the shared git hooks and history conventions. Work inside `packages/document-mcp/`.
240
240
 
241
241
  ## License
242
242
 
package/dist/bin.js CHANGED
@@ -8,7 +8,7 @@ import { existsSync, readFileSync } from "node:fs";
8
8
  import { basename, join } from "node:path";
9
9
  import { buildOutline, isOutlineNode, outlineLeafText } from "document-outline.js";
10
10
  //#region package.json
11
- var version = "2.1.23";
11
+ var version = "2.1.25";
12
12
  //#endregion
13
13
  //#region src/io/document-input.ts
14
14
  const EXTENSION_TO_FORMAT = {
package/dist/index.cjs CHANGED
@@ -7,7 +7,7 @@ let node_fs = require("node:fs");
7
7
  let node_path = require("node:path");
8
8
  let document_outline_js = require("document-outline.js");
9
9
  //#region package.json
10
- var version = "2.1.23";
10
+ var version = "2.1.25";
11
11
  //#endregion
12
12
  //#region src/io/document-input.ts
13
13
  const EXTENSION_TO_FORMAT = {
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { existsSync, readFileSync } from "node:fs";
6
6
  import { basename, join } from "node:path";
7
7
  import { buildOutline, isOutlineNode, outlineLeafText } from "document-outline.js";
8
8
  //#region package.json
9
- var version = "2.1.23";
9
+ var version = "2.1.25";
10
10
  //#endregion
11
11
  //#region src/io/document-input.ts
12
12
  const EXTENSION_TO_FORMAT = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "document-mcp",
3
- "version": "2.1.23",
3
+ "version": "2.1.25",
4
4
  "description": "MCP (Model Context Protocol) server exposing documents.js's document-conversion, .odb, metadata, and font tooling as MCP tools.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -54,8 +54,9 @@
54
54
  "prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
55
55
  "lint": "turbo run _lint",
56
56
  "_lint": "eslint . --fix --cache --max-warnings 0",
57
- "typecheck": "turbo run _typecheck",
57
+ "typecheck": "turbo run _typecheck _typecheck:attw",
58
58
  "_typecheck": "tsc --noEmit",
59
+ "_typecheck:attw": "attw --pack",
59
60
  "test": "turbo run _test",
60
61
  "_test": "vitest run --project unit",
61
62
  "test:workers": "turbo run _test:workers",
@@ -86,8 +87,8 @@
86
87
  "packageManager": "pnpm@11.6.0",
87
88
  "dependencies": {
88
89
  "@modelcontextprotocol/server": "^2.0.0",
89
- "document-outline.js": "^1.0.3",
90
- "documents.js": "^4.0.23",
90
+ "document-outline.js": "^1.0.4",
91
+ "documents.js": "^4.0.25",
91
92
  "zod": "^4.2.0"
92
93
  },
93
94
  "devDependencies": {
@@ -106,8 +107,8 @@
106
107
  "globals": "^17.8.0",
107
108
  "husky": "^9.1.7",
108
109
  "lint-staged": "^17.3.0",
109
- "odf.js": "^5.0.6",
110
- "pdf-codec": "^3.0.11",
110
+ "odf.js": "^5.0.7",
111
+ "pdf-codec": "^3.0.12",
111
112
  "publint": "^0.3.22",
112
113
  "semantic-release": "^25.0.8",
113
114
  "tsdown": "^0.22.14",