json-from-llm 0.1.0 → 0.1.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.
- package/CHANGELOG.md +15 -0
- package/README.md +7 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ All notable changes to this project are documented here. The format follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project adheres
|
|
5
5
|
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.1.2] - 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, Dependabot config
|
|
13
|
+
and a Scorecard README badge.
|
|
14
|
+
|
|
15
|
+
## [0.1.1] - 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
|
+
|
|
7
22
|
## [0.1.0] - 2026-06-04
|
|
8
23
|
|
|
9
24
|
### Added
|
package/README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# json-from-llm
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/json-from-llm)
|
|
4
|
+
[](https://www.npmjs.com/package/json-from-llm)
|
|
5
|
+
[](https://github.com/slegarraga/json-from-llm/actions/workflows/ci.yml)
|
|
6
|
+
[](https://scorecard.dev/viewer/?uri=github.com/slegarraga/json-from-llm)
|
|
7
|
+
[](./LICENSE)
|
|
8
|
+
[](./package.json)
|
|
9
|
+
|
|
3
10
|
> Extract valid JSON from an LLM response — even when it's wrapped in reasoning/thinking tags, markdown fences or prose. **Zero dependencies.**
|
|
4
11
|
|
|
5
12
|
You asked for JSON. The model gave you:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json-from-llm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Extract valid JSON from an LLM response, even when it is wrapped in reasoning/thinking tags, markdown fences or prose. Zero dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"llm",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"tsup": "^8.3.5",
|
|
70
70
|
"typescript": "^5.7.2",
|
|
71
71
|
"typescript-eslint": "^8.60.0",
|
|
72
|
-
"vitest": "^
|
|
72
|
+
"vitest": "^4.1.8"
|
|
73
73
|
}
|
|
74
74
|
}
|