internet-archive-mcp 3.4.0 → 3.5.0

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/CHANGELOG.md +10 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ ## [3.5.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.4.0...v3.5.0) (2026-05-10)
2
+
3
+ ### Features
4
+
5
+ * add untested-files check and production wiring tests ([e53495a](https://github.com/Mearman/mcp-wayback-machine/commit/e53495af8a7579a71ea9d4d7277a27ffdf86268d))
6
+
7
+ ### Bug Fixes
8
+
9
+ * exclude wiring files from coverage thresholds ([10ab442](https://github.com/Mearman/mcp-wayback-machine/commit/10ab4427dda1c515832b3966e3186f68291b99de))
10
+
1
11
  ## [3.4.0](https://github.com/Mearman/mcp-wayback-machine/compare/v3.3.2...v3.4.0) (2026-05-10)
2
12
 
3
13
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "internet-archive-mcp",
3
3
  "mcpName": "io.github.Mearman/mcp-wayback-machine",
4
- "version": "3.4.0",
4
+ "version": "3.5.0",
5
5
  "description": "MCP server and CLI tool for interacting with the Wayback Machine without API keys",
6
6
  "main": "./dist/bin.js",
7
7
  "type": "module",
@@ -64,6 +64,7 @@
64
64
  "eslint-config-prettier": "10.1.8",
65
65
  "eslint-plugin-prettier": "5.5.5",
66
66
  "eslint-plugin-zod": "3.11.0",
67
+ "glob": "13.0.6",
67
68
  "husky": "9.1.7",
68
69
  "lint-staged": "16.4.0",
69
70
  "prettier": "3.8.3",
@@ -80,7 +81,8 @@
80
81
  "_lint": "eslint --cache",
81
82
  "_lint:fix": "eslint --cache --fix",
82
83
  "_test": "node --test 'tests/**/*.unit.test.ts' 'tests/**/*.integration.test.ts'",
83
- "_test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=80 --test-coverage-functions=80 --test-coverage-include='src/**/*.ts' 'tests/**/*.unit.test.ts' 'tests/**/*.integration.test.ts'",
84
+ "_test:coverage": "node --test --experimental-test-coverage --test-coverage-lines=80 --test-coverage-branches=80 --test-coverage-functions=80 --test-coverage-exclude='src/contexts.ts' --test-coverage-exclude='src/cli.ts' --test-coverage-exclude='src/bin.ts' --test-coverage-exclude='src/tools/context.ts' --test-coverage-include='src/**/*.ts' 'tests/**/*.unit.test.ts' 'tests/**/*.integration.test.ts'",
85
+ "_test:untested": "node --experimental-strip-types scripts/untested-files.ts",
84
86
  "_test:e2e": "node --test 'tests/e2e.test.ts'",
85
87
  "_build": "tsc -p tsconfig.build.json && chmod +x dist/bin.js",
86
88
  "typecheck": "turbo run _typecheck",