@nexkit/json-repair 1.0.0 → 1.0.1
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 +6 -0
- package/README.md +4 -0
- package/package.json +5 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 1.0.1 - 2026-09-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- PayPal funding metadata and a README support link.
|
|
13
|
+
|
|
8
14
|
## 1.0.0 - 2026-09-03
|
|
9
15
|
|
|
10
16
|
### Added
|
package/README.md
CHANGED
|
@@ -360,6 +360,10 @@ Node.js 18 and later. Ships as ESM (`import`) and CommonJS (`require`), with Typ
|
|
|
360
360
|
|
|
361
361
|
Issues and pull requests are welcome at [github.com/nathanpixodeo/json-repair](https://github.com/nathanpixodeo/json-repair).
|
|
362
362
|
|
|
363
|
+
## Support development
|
|
364
|
+
|
|
365
|
+
If this package helps you, you can [buy me a beer](https://paypal.me/shivakira95).
|
|
366
|
+
|
|
363
367
|
## License
|
|
364
368
|
|
|
365
369
|
MIT © nexkit
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexkit/json-repair",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Repair malformed JSON from LLMs and real-world text — safely, deterministically, with zero dependencies.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"json",
|
|
@@ -32,6 +32,10 @@
|
|
|
32
32
|
"bugs": {
|
|
33
33
|
"url": "https://github.com/nathanpixodeo/json-repair/issues"
|
|
34
34
|
},
|
|
35
|
+
"funding": {
|
|
36
|
+
"type": "individual",
|
|
37
|
+
"url": "https://paypal.me/shivakira95"
|
|
38
|
+
},
|
|
35
39
|
"type": "module",
|
|
36
40
|
"sideEffects": false,
|
|
37
41
|
"publishConfig": {
|