mythos-router 1.5.0 → 1.5.2

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 +7 -0
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ---
9
9
 
10
+ ## [1.5.2] — 2026-04-30
11
+
12
+ ### Fixed
13
+ - **Dependency Cleanup** — Removed unused `viem` and its ~13 transitive dependencies (crypto curves, bip39, etc.) to significantly reduce package weight and install time.
14
+
15
+ ---
16
+
10
17
  ## [1.5.0] — 2026-04-30
11
18
 
12
19
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mythos-router",
3
- "version": "1.5.0",
3
+ "version": "1.5.2",
4
4
  "description": "Capybara-tier CLI router — Claude Opus 4.7 with Adaptive Thinking, Strict Write Discipline, and Self-Healing Memory",
5
5
  "type": "module",
6
6
  "bin": {
@@ -59,8 +59,7 @@
59
59
  },
60
60
  "dependencies": {
61
61
  "@anthropic-ai/sdk": "^0.91.1",
62
- "commander": "^14.0.3",
63
- "viem": "^2.48.4"
62
+ "commander": "^14.0.3"
64
63
  },
65
64
  "devDependencies": {
66
65
  "@types/node": "^25.6.0",
@@ -70,4 +69,4 @@
70
69
  "engines": {
71
70
  "node": ">=20.0.0"
72
71
  }
73
- }
72
+ }