tool-schema 0.3.1 → 0.3.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 +2 -2
package/CHANGELOG.md CHANGED
@@ -6,6 +6,13 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.3.2] - 2026-06-07
10
+
11
+ ### Fixed
12
+
13
+ - Normalized the package `bin` path so npm no longer auto-corrects package
14
+ metadata during publish.
15
+
9
16
  ## [0.3.1] - 2026-06-07
10
17
 
11
18
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tool-schema",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Convert any JSON Schema into a valid tool / function calling schema for OpenAI, Anthropic, Gemini and MCP. Zero dependencies.",
5
5
  "keywords": [
6
6
  "openai",
@@ -45,7 +45,7 @@
45
45
  "./package.json": "./package.json"
46
46
  },
47
47
  "bin": {
48
- "tool-schema": "./dist/cli.js"
48
+ "tool-schema": "dist/cli.js"
49
49
  },
50
50
  "files": [
51
51
  "dist",