json-diff-ts 4.5.0 → 4.5.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/README.md +2 -1
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# json-diff-ts
|
|
2
2
|
|
|
3
|
-
](https://github.com/ltwlf/json-diff-ts/actions/workflows/ci.yml)
|
|
4
4
|
[](https://snyk.io/test/github/ltwlf/json-diff-ts?targetFile=package.json)
|
|
5
5
|
[](https://sonarcloud.io/dashboard?id=ltwlf_json-diff-ts)
|
|
6
6
|
|
|
@@ -188,6 +188,7 @@ const value = jsonPath.query(data, '$.characters[?(@.id=="LUK")].name');
|
|
|
188
188
|
|
|
189
189
|
## Release Notes
|
|
190
190
|
|
|
191
|
+
- **v4.5.1:** Updated package dependencies
|
|
191
192
|
- **v4.5.0:** Switched internal utilities from lodash to es-toolkit/compat for a smaller bundle size
|
|
192
193
|
- **v4.4.0:** Fixed Date-to-string diff when `treatTypeChangeAsReplace` is false
|
|
193
194
|
- **v4.3.0:** Enhanced functionality:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json-diff-ts",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"description": "A JSON diff tool for JavaScript written in TypeScript.",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
},
|
|
40
40
|
"homepage": "https://github.com/ltwlf/json-diff-ts#readme",
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@eslint/js": "^9.
|
|
43
|
-
"@jest/globals": "^
|
|
44
|
-
"@types/jest": "^
|
|
45
|
-
"eslint": "^
|
|
46
|
-
"jest": "^
|
|
42
|
+
"@eslint/js": "^9.29.0",
|
|
43
|
+
"@jest/globals": "^30.0.0",
|
|
44
|
+
"@types/jest": "^30.0.0",
|
|
45
|
+
"eslint": "^9.29.0",
|
|
46
|
+
"jest": "^30.0.0",
|
|
47
47
|
"prettier": "^3.0.3",
|
|
48
|
-
"ts-jest": "^29.0
|
|
49
|
-
"tsup": "^8.0
|
|
50
|
-
"typescript": "^5.3
|
|
51
|
-
"typescript-eslint": "^8.
|
|
48
|
+
"ts-jest": "^29.4.0",
|
|
49
|
+
"tsup": "^8.5.0",
|
|
50
|
+
"typescript": "^5.8.3",
|
|
51
|
+
"typescript-eslint": "^8.34.0"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"es-toolkit": "^1.39.3"
|