@gmb/bitmark-parser-generator 5.20.0 → 5.22.0
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/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/index.cjs +188 -33
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +20 -2
- package/dist/browser/esm/index.d.ts +20 -2
- package/dist/browser/esm/index.js +188 -33
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +204 -35
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +204 -35
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +20 -2
- package/dist/index.d.ts +20 -2
- package/dist/index.js +204 -35
- package/dist/index.js.map +1 -1
- package/package.json +23 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gmb/bitmark-parser-generator",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.22.0",
|
|
4
4
|
"description": "A bitmark parser and generator using Peggy.js",
|
|
5
5
|
"author": "Get More Brain Ltd",
|
|
6
6
|
"license": "ISC",
|
|
@@ -151,36 +151,37 @@
|
|
|
151
151
|
"@ncoderz/superenum": "^1.0.0",
|
|
152
152
|
"@types/fs-extra": "^11.0.4",
|
|
153
153
|
"commander": "^14.0.3",
|
|
154
|
-
"fs-extra": "^11.3.
|
|
154
|
+
"fs-extra": "^11.3.4"
|
|
155
155
|
},
|
|
156
156
|
"devDependencies": {
|
|
157
|
-
"@eslint/
|
|
158
|
-
"@eslint/
|
|
159
|
-
"@
|
|
157
|
+
"@eslint/js": "^10.0.1",
|
|
158
|
+
"@eslint/json": "^1.2.0",
|
|
159
|
+
"@eslint/markdown": "^8.0.1",
|
|
160
|
+
"@swc/core": "^1.15.30",
|
|
160
161
|
"@types/ungap__structured-clone": "^1.2.0",
|
|
161
162
|
"@types/webpack-bundle-analyzer": "^4.7.0",
|
|
162
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
163
|
-
"@typescript-eslint/parser": "^8.
|
|
164
|
-
"diff": "^
|
|
165
|
-
"eslint": "^
|
|
163
|
+
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
164
|
+
"@typescript-eslint/parser": "^8.58.2",
|
|
165
|
+
"diff": "^9.0.0",
|
|
166
|
+
"eslint": "^10.2.1",
|
|
166
167
|
"eslint-plugin-prettier": "^5.5.5",
|
|
167
|
-
"eslint-plugin-simple-import-sort": "^
|
|
168
|
+
"eslint-plugin-simple-import-sort": "^13.0.0",
|
|
168
169
|
"execa": "^9.6.1",
|
|
169
|
-
"jsdom": "^
|
|
170
|
+
"jsdom": "^29.0.2",
|
|
170
171
|
"node-polyfill-webpack-plugin": "^4.1.0",
|
|
171
172
|
"os-browserify": "^0.3.0",
|
|
172
|
-
"peggy": "^5.0
|
|
173
|
-
"prettier": "^3.8.
|
|
174
|
-
"terser-webpack-plugin": "^5.
|
|
173
|
+
"peggy": "^5.1.0",
|
|
174
|
+
"prettier": "^3.8.3",
|
|
175
|
+
"terser-webpack-plugin": "^5.4.0",
|
|
175
176
|
"tsup": "^8.5.1",
|
|
176
177
|
"tsx": "^4.21.0",
|
|
177
|
-
"typedoc": "^0.28.
|
|
178
|
-
"typedoc-plugin-markdown": "^4.
|
|
179
|
-
"typescript": "^
|
|
180
|
-
"typescript-eslint": "^8.
|
|
181
|
-
"vitest": "^4.
|
|
182
|
-
"webpack": "^5.
|
|
183
|
-
"webpack-bundle-analyzer": "^5.
|
|
184
|
-
"webpack-cli": "^
|
|
178
|
+
"typedoc": "^0.28.19",
|
|
179
|
+
"typedoc-plugin-markdown": "^4.11.0",
|
|
180
|
+
"typescript": "^6.0.3",
|
|
181
|
+
"typescript-eslint": "^8.58.2",
|
|
182
|
+
"vitest": "^4.1.4",
|
|
183
|
+
"webpack": "^5.106.2",
|
|
184
|
+
"webpack-bundle-analyzer": "^5.3.0",
|
|
185
|
+
"webpack-cli": "^7.0.2"
|
|
185
186
|
}
|
|
186
187
|
}
|