tool-schema 0.1.1 → 0.1.3
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/CHANGELOG.md +22 -0
- package/README.md +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,28 @@ All notable changes to this project are documented here. The format is based on
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this project adheres
|
|
5
5
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.3] - 2026-06-04
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Updated vulnerable development tooling and added CodeQL, OpenSSF Scorecard,
|
|
12
|
+
pinned GitHub Actions, least-privilege workflow permissions and a Scorecard
|
|
13
|
+
README badge.
|
|
14
|
+
|
|
15
|
+
## [0.1.2] - 2026-06-04
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Published README package-status badges, download visibility and release notes
|
|
20
|
+
to the npm package page.
|
|
21
|
+
|
|
22
|
+
## [0.1.1] - 2026-06-03
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Added OpenAI-compatible provider keywords for DeepSeek, Groq and OpenRouter
|
|
27
|
+
discovery in npm and package metadata.
|
|
28
|
+
|
|
7
29
|
## [0.1.0] - 2026-06-01
|
|
8
30
|
|
|
9
31
|
### Added
|
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# tool-schema
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/tool-schema)
|
|
4
|
+
[](https://www.npmjs.com/package/tool-schema)
|
|
4
5
|
[](https://github.com/slegarraga/tool-schema/actions/workflows/ci.yml)
|
|
6
|
+
[](https://scorecard.dev/viewer/?uri=github.com/slegarraga/tool-schema)
|
|
5
7
|
[](./LICENSE)
|
|
6
8
|
[](./package.json)
|
|
7
9
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tool-schema",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
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",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"tsup": "^8.3.5",
|
|
77
77
|
"typescript": "^5.7.2",
|
|
78
78
|
"typescript-eslint": "^8.60.0",
|
|
79
|
-
"vitest": "^
|
|
79
|
+
"vitest": "^4.1.8"
|
|
80
80
|
}
|
|
81
81
|
}
|