@fre4x/arxiv 1.0.54 → 1.0.57

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/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -32473,7 +32473,8 @@ config(en_default());
32473
32473
  var zod_default = external_exports;
32474
32474
 
32475
32475
  // ../packages/shared/dist/pagination.js
32476
- var z2 = external_exports || zod_default || zod_exports;
32476
+ var zodCompat = zod_exports;
32477
+ var z2 = zodCompat.z ?? zodCompat.default?.z ?? zodCompat.default ?? zodCompat;
32477
32478
  var paginationSchema = z2.object({
32478
32479
  limit: z2.number().int().min(1).max(100).default(20).describe("Maximum results to return (1\u2013100, default 20)"),
32479
32480
  offset: z2.number().int().min(0).default(0).describe("Number of results to skip for pagination (default 0)")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fre4x/arxiv",
3
- "version": "1.0.54",
3
+ "version": "1.0.57",
4
4
  "description": "An arXiv MCP server for searching and retrieving academic papers.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",