json-rescue 0.2.0 → 0.2.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 ADDED
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ ## [0.2.1](https://github.com/azeemmirza/json-rescue/compare/0.2.0...0.2.1) (2026-02-20)
package/README.md CHANGED
@@ -84,7 +84,7 @@ Typical environments where this breaks:
84
84
  ### 3.1 Version Roadmap (Planned)
85
85
 
86
86
  ```text
87
- v0.1.0 (Core) → v0.2.0 → v0.3.0 → v0.4.0 → v1.0.0
87
+ v0.1.0 (Core) → v0.2.1 → v0.3.0 → v0.4.0 → v1.0.0
88
88
  │ │ │ │ │
89
89
  ▼ ▼ ▼ ▼ ▼
90
90
  Extract + Repair Multi + Streaming Stable
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "json-rescue",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Rescue valid JSON from messy text by extracting candidates, applying safe repairs, and returning a parsed result with a transparent repair report.",
5
5
  "keywords": [
6
6
  "json",
@@ -38,11 +38,10 @@
38
38
  "lint:fix": "eslint src --ext .ts --fix",
39
39
  "format": "prettier --write \"src/**/*.ts\"",
40
40
  "format:check": "prettier --check \"src/**/*.ts\"",
41
- "prepare": "husky install",
42
41
  "release": "release-it",
43
42
  "release:dry": "release-it --dry-run",
44
43
  "prepublishOnly": "npm run build && npm run lint && npm run test",
45
- "publish:public": "npm publish --access public"
44
+ "publish": "npm publish --access public"
46
45
  },
47
46
  "devDependencies": {
48
47
  "@commitlint/cli": "^20.4.2",
@@ -56,7 +55,6 @@
56
55
  "eslint": "^10.0.0",
57
56
  "eslint-config-prettier": "^10.1.8",
58
57
  "eslint-plugin-prettier": "^5.5.5",
59
- "husky": "^9.1.7",
60
58
  "jest": "^30.2.0",
61
59
  "release-it": "^19.2.4",
62
60
  "ts-jest": "^29.4.6",