fast-xml-parser 5.5.3 → 5.5.4

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Note: Due to some last quick changes on v4, detail of v4.5.3 & v4.5.4 are not updated here. v4.5.4x is the last tag of v4 in github repository. I'm extremely sorry for the confusion
4
4
 
5
+ **5.5.4 / 2026-03-13**
6
+ - declare Matcher & Expression as unknown so user is not forced to install path-expression-matcher
7
+
8
+
5
9
  **5.5.3 / 2026-03-11**
6
10
  - upgrade builder
7
11
 
package/lib/fxp.d.cts CHANGED
@@ -1,4 +1,7 @@
1
- const { Matcher, Expression } = require('path-expression-matcher');
1
+ // import type { Matcher, Expression } from 'path-expression-matcher';
2
+
3
+ type Matcher = unknown;
4
+ type Expression = unknown;
2
5
 
3
6
  type ProcessEntitiesOptions = {
4
7
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fast-xml-parser",
3
- "version": "5.5.3",
3
+ "version": "5.5.4",
4
4
  "description": "Validate XML, Parse XML, Build XML without C/C++ based libraries",
5
5
  "main": "./lib/fxp.cjs",
6
6
  "type": "module",
@@ -87,7 +87,7 @@
87
87
  }
88
88
  ],
89
89
  "dependencies": {
90
- "fast-xml-builder": "^1.1.2",
90
+ "fast-xml-builder": "^1.1.3",
91
91
  "path-expression-matcher": "^1.1.3",
92
92
  "strnum": "^2.1.2"
93
93
  }
package/src/fxp.d.ts CHANGED
@@ -1,4 +1,7 @@
1
- import { Matcher, Expression } from 'path-expression-matcher';
1
+ //import type { Matcher, Expression } from 'path-expression-matcher';
2
+
3
+ type Matcher = unknown;
4
+ type Expression = unknown;
2
5
 
3
6
  export type ProcessEntitiesOptions = {
4
7
  /**