lutaml-jsonschema 0.1.15 → 0.1.16
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.
- checksums.yaml +4 -4
- data/.rubocop_todo.yml +1 -1
- data/frontend/package-lock.json +533 -0
- data/frontend/package.json +1 -0
- data/frontend/src/App.vue +13 -6
- data/frontend/src/__tests__/useBuilderField.test.ts +81 -0
- data/frontend/src/__tests__/useClipboard.test.ts +68 -0
- data/frontend/src/__tests__/useJsonViewer.test.ts +148 -0
- data/frontend/src/__tests__/useMarkdownLite.test.ts +46 -0
- data/frontend/src/__tests__/useSchemaTypes.test.ts +211 -0
- data/frontend/src/__tests__/useSearch.test.ts +59 -0
- data/frontend/src/components/AppSidebar.vue +60 -9
- data/frontend/src/components/DetailPanel.vue +93 -199
- data/frontend/src/components/SchemaBuilder.vue +177 -56
- data/frontend/src/composables/useSchemaTypes.ts +15 -13
- data/frontend/src/composables/useSearch.ts +24 -6
- data/frontend/src/style.css +88 -2
- data/frontend/src/views/HomeView.vue +237 -242
- data/lib/lutaml/jsonschema/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4a225cce2d635b5a3d8b1376087e61b6f20e319ed84b34bc543812279bb7c6f2
|
|
4
|
+
data.tar.gz: 394d28b298c43654eb7d6f6614b310ef31311a0e51d6a537f41b70e947010fa6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f1f62960e78d9e07ac390fc37ab7c8e0853cbaeaefdaa12843bc41ceb17aecfdaa2193dcf26e382034008b4377fcedfad4094648ce858a611b431cfe78ead7c
|
|
7
|
+
data.tar.gz: 9f1e1c38bd3335511264282a1e5d49cb74b4bb850a43ee58355fb64b422efb68415b778eda4540a79fbaf933bc265a583b0089b85b8bb5843da0709b9ddafd4e
|
data/.rubocop_todo.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# This configuration was generated by
|
|
2
2
|
# `rubocop --auto-gen-config`
|
|
3
|
-
# on 2026-05-
|
|
3
|
+
# on 2026-05-14 10:12:34 UTC using RuboCop version 1.86.1.
|
|
4
4
|
# The point is for the user to remove these configuration records
|
|
5
5
|
# one by one as the offenses are removed from the code base.
|
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
data/frontend/package-lock.json
CHANGED
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@vitejs/plugin-vue": "^5.0.0",
|
|
18
|
+
"jsdom": "^29.1.1",
|
|
18
19
|
"terser": "^5.46.2",
|
|
19
20
|
"typescript": "^5.3.0",
|
|
20
21
|
"vite": "^5.4.0",
|
|
@@ -22,6 +23,57 @@
|
|
|
22
23
|
"vue-tsc": "^2.0.0"
|
|
23
24
|
}
|
|
24
25
|
},
|
|
26
|
+
"node_modules/@asamuzakjp/css-color": {
|
|
27
|
+
"version": "5.1.11",
|
|
28
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-5.1.11.tgz",
|
|
29
|
+
"integrity": "sha512-KVw6qIiCTUQhByfTd78h2yD1/00waTmm9uy/R7Ck/ctUyAPj+AEDLkQIdJW0T8+qGgj3j5bpNKK7Q3G+LedJWg==",
|
|
30
|
+
"dev": true,
|
|
31
|
+
"license": "MIT",
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@asamuzakjp/generational-cache": "^1.0.1",
|
|
34
|
+
"@csstools/css-calc": "^3.2.0",
|
|
35
|
+
"@csstools/css-color-parser": "^4.1.0",
|
|
36
|
+
"@csstools/css-parser-algorithms": "^4.0.0",
|
|
37
|
+
"@csstools/css-tokenizer": "^4.0.0"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
"node_modules/@asamuzakjp/dom-selector": {
|
|
44
|
+
"version": "7.1.1",
|
|
45
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/dom-selector/-/dom-selector-7.1.1.tgz",
|
|
46
|
+
"integrity": "sha512-67RZDnYRc8H/8MLDgQCDE//zoqVFwajkepHZgmXrbwybzXOEwOWGPYGmALYl9J2DOLfFPPs6kKCqmbzV895hTQ==",
|
|
47
|
+
"dev": true,
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@asamuzakjp/generational-cache": "^1.0.1",
|
|
51
|
+
"@asamuzakjp/nwsapi": "^2.3.9",
|
|
52
|
+
"bidi-js": "^1.0.3",
|
|
53
|
+
"css-tree": "^3.2.1",
|
|
54
|
+
"is-potential-custom-element-name": "^1.0.1"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"node_modules/@asamuzakjp/generational-cache": {
|
|
61
|
+
"version": "1.0.1",
|
|
62
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/generational-cache/-/generational-cache-1.0.1.tgz",
|
|
63
|
+
"integrity": "sha512-wajfB8KqzMCN2KGNFdLkReeHncd0AslUSrvHVvvYWuU8ghncRJoA50kT3zP9MVL0+9g4/67H+cdvBskj9THPzg==",
|
|
64
|
+
"dev": true,
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"node_modules/@asamuzakjp/nwsapi": {
|
|
71
|
+
"version": "2.3.9",
|
|
72
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/nwsapi/-/nwsapi-2.3.9.tgz",
|
|
73
|
+
"integrity": "sha512-n8GuYSrI9bF7FFZ/SjhwevlHc8xaVlb/7HmHelnc/PZXBD2ZR49NnN9sMMuDdEGPeeRQ5d0hqlSlEpgCX3Wl0Q==",
|
|
74
|
+
"dev": true,
|
|
75
|
+
"license": "MIT"
|
|
76
|
+
},
|
|
25
77
|
"node_modules/@babel/helper-string-parser": {
|
|
26
78
|
"version": "7.27.1",
|
|
27
79
|
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
|
@@ -68,6 +120,159 @@
|
|
|
68
120
|
"node": ">=6.9.0"
|
|
69
121
|
}
|
|
70
122
|
},
|
|
123
|
+
"node_modules/@bramus/specificity": {
|
|
124
|
+
"version": "2.4.2",
|
|
125
|
+
"resolved": "https://registry.npmjs.org/@bramus/specificity/-/specificity-2.4.2.tgz",
|
|
126
|
+
"integrity": "sha512-ctxtJ/eA+t+6q2++vj5j7FYX3nRu311q1wfYH3xjlLOsczhlhxAg2FWNUXhpGvAw3BWo1xBcvOV6/YLc2r5FJw==",
|
|
127
|
+
"dev": true,
|
|
128
|
+
"license": "MIT",
|
|
129
|
+
"dependencies": {
|
|
130
|
+
"css-tree": "^3.0.0"
|
|
131
|
+
},
|
|
132
|
+
"bin": {
|
|
133
|
+
"specificity": "bin/cli.js"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"node_modules/@csstools/color-helpers": {
|
|
137
|
+
"version": "6.0.2",
|
|
138
|
+
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-6.0.2.tgz",
|
|
139
|
+
"integrity": "sha512-LMGQLS9EuADloEFkcTBR3BwV/CGHV7zyDxVRtVDTwdI2Ca4it0CCVTT9wCkxSgokjE5Ho41hEPgb8OEUwoXr6Q==",
|
|
140
|
+
"dev": true,
|
|
141
|
+
"funding": [
|
|
142
|
+
{
|
|
143
|
+
"type": "github",
|
|
144
|
+
"url": "https://github.com/sponsors/csstools"
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"type": "opencollective",
|
|
148
|
+
"url": "https://opencollective.com/csstools"
|
|
149
|
+
}
|
|
150
|
+
],
|
|
151
|
+
"license": "MIT-0",
|
|
152
|
+
"engines": {
|
|
153
|
+
"node": ">=20.19.0"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"node_modules/@csstools/css-calc": {
|
|
157
|
+
"version": "3.2.1",
|
|
158
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-3.2.1.tgz",
|
|
159
|
+
"integrity": "sha512-DtdHlgXh5ZkA43cwBcAm+huzgJiwx3ZTWVjBs94kwz2xKqSimDA3lBgCjphYgwgVUMWatSM0pDd8TILB1yrVVg==",
|
|
160
|
+
"dev": true,
|
|
161
|
+
"funding": [
|
|
162
|
+
{
|
|
163
|
+
"type": "github",
|
|
164
|
+
"url": "https://github.com/sponsors/csstools"
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "opencollective",
|
|
168
|
+
"url": "https://opencollective.com/csstools"
|
|
169
|
+
}
|
|
170
|
+
],
|
|
171
|
+
"license": "MIT",
|
|
172
|
+
"engines": {
|
|
173
|
+
"node": ">=20.19.0"
|
|
174
|
+
},
|
|
175
|
+
"peerDependencies": {
|
|
176
|
+
"@csstools/css-parser-algorithms": "^4.0.0",
|
|
177
|
+
"@csstools/css-tokenizer": "^4.0.0"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"node_modules/@csstools/css-color-parser": {
|
|
181
|
+
"version": "4.1.1",
|
|
182
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-4.1.1.tgz",
|
|
183
|
+
"integrity": "sha512-eZ5XOtyhK+mggRafYUWzA0tvaYOFgdY8AkgQiCJF9qNAePnUo/zmsqqYubBBb3sQ8uNUaSKTY9s9klfRaAXL0g==",
|
|
184
|
+
"dev": true,
|
|
185
|
+
"funding": [
|
|
186
|
+
{
|
|
187
|
+
"type": "github",
|
|
188
|
+
"url": "https://github.com/sponsors/csstools"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"type": "opencollective",
|
|
192
|
+
"url": "https://opencollective.com/csstools"
|
|
193
|
+
}
|
|
194
|
+
],
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"dependencies": {
|
|
197
|
+
"@csstools/color-helpers": "^6.0.2",
|
|
198
|
+
"@csstools/css-calc": "^3.2.1"
|
|
199
|
+
},
|
|
200
|
+
"engines": {
|
|
201
|
+
"node": ">=20.19.0"
|
|
202
|
+
},
|
|
203
|
+
"peerDependencies": {
|
|
204
|
+
"@csstools/css-parser-algorithms": "^4.0.0",
|
|
205
|
+
"@csstools/css-tokenizer": "^4.0.0"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
"node_modules/@csstools/css-parser-algorithms": {
|
|
209
|
+
"version": "4.0.0",
|
|
210
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-4.0.0.tgz",
|
|
211
|
+
"integrity": "sha512-+B87qS7fIG3L5h3qwJ/IFbjoVoOe/bpOdh9hAjXbvx0o8ImEmUsGXN0inFOnk2ChCFgqkkGFQ+TpM5rbhkKe4w==",
|
|
212
|
+
"dev": true,
|
|
213
|
+
"funding": [
|
|
214
|
+
{
|
|
215
|
+
"type": "github",
|
|
216
|
+
"url": "https://github.com/sponsors/csstools"
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"type": "opencollective",
|
|
220
|
+
"url": "https://opencollective.com/csstools"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"license": "MIT",
|
|
224
|
+
"engines": {
|
|
225
|
+
"node": ">=20.19.0"
|
|
226
|
+
},
|
|
227
|
+
"peerDependencies": {
|
|
228
|
+
"@csstools/css-tokenizer": "^4.0.0"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"node_modules/@csstools/css-syntax-patches-for-csstree": {
|
|
232
|
+
"version": "1.1.4",
|
|
233
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.1.4.tgz",
|
|
234
|
+
"integrity": "sha512-wgsqt92b7C7tQhIdPNxj0n9zuUbQlvAuI1exyzeNrOKOi62SD7ren8zqszmpVREjAOqg8cD2FqYhQfAuKjk4sw==",
|
|
235
|
+
"dev": true,
|
|
236
|
+
"funding": [
|
|
237
|
+
{
|
|
238
|
+
"type": "github",
|
|
239
|
+
"url": "https://github.com/sponsors/csstools"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"type": "opencollective",
|
|
243
|
+
"url": "https://opencollective.com/csstools"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"license": "MIT-0",
|
|
247
|
+
"peerDependencies": {
|
|
248
|
+
"css-tree": "^3.2.1"
|
|
249
|
+
},
|
|
250
|
+
"peerDependenciesMeta": {
|
|
251
|
+
"css-tree": {
|
|
252
|
+
"optional": true
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"node_modules/@csstools/css-tokenizer": {
|
|
257
|
+
"version": "4.0.0",
|
|
258
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-4.0.0.tgz",
|
|
259
|
+
"integrity": "sha512-QxULHAm7cNu72w97JUNCBFODFaXpbDg+dP8b/oWFAZ2MTRppA3U00Y2L1HqaS4J6yBqxwa/Y3nMBaxVKbB/NsA==",
|
|
260
|
+
"dev": true,
|
|
261
|
+
"funding": [
|
|
262
|
+
{
|
|
263
|
+
"type": "github",
|
|
264
|
+
"url": "https://github.com/sponsors/csstools"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"type": "opencollective",
|
|
268
|
+
"url": "https://opencollective.com/csstools"
|
|
269
|
+
}
|
|
270
|
+
],
|
|
271
|
+
"license": "MIT",
|
|
272
|
+
"engines": {
|
|
273
|
+
"node": ">=20.19.0"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
71
276
|
"node_modules/@emnapi/core": {
|
|
72
277
|
"version": "1.10.0",
|
|
73
278
|
"resolved": "https://registry.npmjs.org/@emnapi/core/-/core-1.10.0.tgz",
|
|
@@ -493,6 +698,24 @@
|
|
|
493
698
|
"node": ">=12"
|
|
494
699
|
}
|
|
495
700
|
},
|
|
701
|
+
"node_modules/@exodus/bytes": {
|
|
702
|
+
"version": "1.15.0",
|
|
703
|
+
"resolved": "https://registry.npmjs.org/@exodus/bytes/-/bytes-1.15.0.tgz",
|
|
704
|
+
"integrity": "sha512-UY0nlA+feH81UGSHv92sLEPLCeZFjXOuHhrIo0HQydScuQc8s0A7kL/UdgwgDq8g8ilksmuoF35YVTNphV2aBQ==",
|
|
705
|
+
"dev": true,
|
|
706
|
+
"license": "MIT",
|
|
707
|
+
"engines": {
|
|
708
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
709
|
+
},
|
|
710
|
+
"peerDependencies": {
|
|
711
|
+
"@noble/hashes": "^1.8.0 || ^2.0.0"
|
|
712
|
+
},
|
|
713
|
+
"peerDependenciesMeta": {
|
|
714
|
+
"@noble/hashes": {
|
|
715
|
+
"optional": true
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
},
|
|
496
719
|
"node_modules/@jridgewell/gen-mapping": {
|
|
497
720
|
"version": "0.3.13",
|
|
498
721
|
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
|
@@ -1536,6 +1759,16 @@
|
|
|
1536
1759
|
"dev": true,
|
|
1537
1760
|
"license": "MIT"
|
|
1538
1761
|
},
|
|
1762
|
+
"node_modules/bidi-js": {
|
|
1763
|
+
"version": "1.0.3",
|
|
1764
|
+
"resolved": "https://registry.npmjs.org/bidi-js/-/bidi-js-1.0.3.tgz",
|
|
1765
|
+
"integrity": "sha512-RKshQI1R3YQ+n9YJz2QQ147P66ELpa1FQEg20Dk8oW9t2KgLbpDLLp9aGZ7y8WHSshDknG0bknqGw5/tyCs5tw==",
|
|
1766
|
+
"dev": true,
|
|
1767
|
+
"license": "MIT",
|
|
1768
|
+
"dependencies": {
|
|
1769
|
+
"require-from-string": "^2.0.2"
|
|
1770
|
+
}
|
|
1771
|
+
},
|
|
1539
1772
|
"node_modules/brace-expansion": {
|
|
1540
1773
|
"version": "2.1.0",
|
|
1541
1774
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.1.0.tgz",
|
|
@@ -1577,12 +1810,40 @@
|
|
|
1577
1810
|
"dev": true,
|
|
1578
1811
|
"license": "MIT"
|
|
1579
1812
|
},
|
|
1813
|
+
"node_modules/css-tree": {
|
|
1814
|
+
"version": "3.2.1",
|
|
1815
|
+
"resolved": "https://registry.npmjs.org/css-tree/-/css-tree-3.2.1.tgz",
|
|
1816
|
+
"integrity": "sha512-X7sjQzceUhu1u7Y/ylrRZFU2FS6LRiFVp6rKLPg23y3x3c3DOKAwuXGDp+PAGjh6CSnCjYeAul8pcT8bAl+lSA==",
|
|
1817
|
+
"dev": true,
|
|
1818
|
+
"license": "MIT",
|
|
1819
|
+
"dependencies": {
|
|
1820
|
+
"mdn-data": "2.27.1",
|
|
1821
|
+
"source-map-js": "^1.2.1"
|
|
1822
|
+
},
|
|
1823
|
+
"engines": {
|
|
1824
|
+
"node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1580
1827
|
"node_modules/csstype": {
|
|
1581
1828
|
"version": "3.2.3",
|
|
1582
1829
|
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
1583
1830
|
"integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
|
|
1584
1831
|
"license": "MIT"
|
|
1585
1832
|
},
|
|
1833
|
+
"node_modules/data-urls": {
|
|
1834
|
+
"version": "7.0.0",
|
|
1835
|
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-7.0.0.tgz",
|
|
1836
|
+
"integrity": "sha512-23XHcCF+coGYevirZceTVD7NdJOqVn+49IHyxgszm+JIiHLoB2TkmPtsYkNWT1pvRSGkc35L6NHs0yHkN2SumA==",
|
|
1837
|
+
"dev": true,
|
|
1838
|
+
"license": "MIT",
|
|
1839
|
+
"dependencies": {
|
|
1840
|
+
"whatwg-mimetype": "^5.0.0",
|
|
1841
|
+
"whatwg-url": "^16.0.0"
|
|
1842
|
+
},
|
|
1843
|
+
"engines": {
|
|
1844
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
1845
|
+
}
|
|
1846
|
+
},
|
|
1586
1847
|
"node_modules/de-indent": {
|
|
1587
1848
|
"version": "1.0.2",
|
|
1588
1849
|
"resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz",
|
|
@@ -1590,6 +1851,13 @@
|
|
|
1590
1851
|
"dev": true,
|
|
1591
1852
|
"license": "MIT"
|
|
1592
1853
|
},
|
|
1854
|
+
"node_modules/decimal.js": {
|
|
1855
|
+
"version": "10.6.0",
|
|
1856
|
+
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
|
1857
|
+
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
|
1858
|
+
"dev": true,
|
|
1859
|
+
"license": "MIT"
|
|
1860
|
+
},
|
|
1593
1861
|
"node_modules/detect-libc": {
|
|
1594
1862
|
"version": "2.1.2",
|
|
1595
1863
|
"resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
|
|
@@ -1723,6 +1991,67 @@
|
|
|
1723
1991
|
"he": "bin/he"
|
|
1724
1992
|
}
|
|
1725
1993
|
},
|
|
1994
|
+
"node_modules/html-encoding-sniffer": {
|
|
1995
|
+
"version": "6.0.0",
|
|
1996
|
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-6.0.0.tgz",
|
|
1997
|
+
"integrity": "sha512-CV9TW3Y3f8/wT0BRFc1/KAVQ3TUHiXmaAb6VW9vtiMFf7SLoMd1PdAc4W3KFOFETBJUb90KatHqlsZMWV+R9Gg==",
|
|
1998
|
+
"dev": true,
|
|
1999
|
+
"license": "MIT",
|
|
2000
|
+
"dependencies": {
|
|
2001
|
+
"@exodus/bytes": "^1.6.0"
|
|
2002
|
+
},
|
|
2003
|
+
"engines": {
|
|
2004
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
2005
|
+
}
|
|
2006
|
+
},
|
|
2007
|
+
"node_modules/is-potential-custom-element-name": {
|
|
2008
|
+
"version": "1.0.1",
|
|
2009
|
+
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
|
2010
|
+
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
|
2011
|
+
"dev": true,
|
|
2012
|
+
"license": "MIT"
|
|
2013
|
+
},
|
|
2014
|
+
"node_modules/jsdom": {
|
|
2015
|
+
"version": "29.1.1",
|
|
2016
|
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-29.1.1.tgz",
|
|
2017
|
+
"integrity": "sha512-ECi4Fi2f7BdJtUKTflYRTiaMxIB0O6zfR1fX0GXpUrf6flp8QIYn1UT20YQqdSOfk2dfkCwS8LAFoJDEppNK5Q==",
|
|
2018
|
+
"dev": true,
|
|
2019
|
+
"license": "MIT",
|
|
2020
|
+
"dependencies": {
|
|
2021
|
+
"@asamuzakjp/css-color": "^5.1.11",
|
|
2022
|
+
"@asamuzakjp/dom-selector": "^7.1.1",
|
|
2023
|
+
"@bramus/specificity": "^2.4.2",
|
|
2024
|
+
"@csstools/css-syntax-patches-for-csstree": "^1.1.3",
|
|
2025
|
+
"@exodus/bytes": "^1.15.0",
|
|
2026
|
+
"css-tree": "^3.2.1",
|
|
2027
|
+
"data-urls": "^7.0.0",
|
|
2028
|
+
"decimal.js": "^10.6.0",
|
|
2029
|
+
"html-encoding-sniffer": "^6.0.0",
|
|
2030
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
2031
|
+
"lru-cache": "^11.3.5",
|
|
2032
|
+
"parse5": "^8.0.1",
|
|
2033
|
+
"saxes": "^6.0.0",
|
|
2034
|
+
"symbol-tree": "^3.2.4",
|
|
2035
|
+
"tough-cookie": "^6.0.1",
|
|
2036
|
+
"undici": "^7.25.0",
|
|
2037
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
2038
|
+
"webidl-conversions": "^8.0.1",
|
|
2039
|
+
"whatwg-mimetype": "^5.0.0",
|
|
2040
|
+
"whatwg-url": "^16.0.1",
|
|
2041
|
+
"xml-name-validator": "^5.0.0"
|
|
2042
|
+
},
|
|
2043
|
+
"engines": {
|
|
2044
|
+
"node": "^20.19.0 || ^22.13.0 || >=24.0.0"
|
|
2045
|
+
},
|
|
2046
|
+
"peerDependencies": {
|
|
2047
|
+
"canvas": "^3.0.0"
|
|
2048
|
+
},
|
|
2049
|
+
"peerDependenciesMeta": {
|
|
2050
|
+
"canvas": {
|
|
2051
|
+
"optional": true
|
|
2052
|
+
}
|
|
2053
|
+
}
|
|
2054
|
+
},
|
|
1726
2055
|
"node_modules/lightningcss": {
|
|
1727
2056
|
"version": "1.32.0",
|
|
1728
2057
|
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
|
@@ -1984,6 +2313,16 @@
|
|
|
1984
2313
|
"url": "https://opencollective.com/parcel"
|
|
1985
2314
|
}
|
|
1986
2315
|
},
|
|
2316
|
+
"node_modules/lru-cache": {
|
|
2317
|
+
"version": "11.3.6",
|
|
2318
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.3.6.tgz",
|
|
2319
|
+
"integrity": "sha512-Gf/KoL3C/MlI7Bt0PGI9I+TeTC/I6r/csU58N4BSNc4lppLBeKsOdFYkK+dX0ABDUMJNfCHTyPpzwwO21Awd3A==",
|
|
2320
|
+
"dev": true,
|
|
2321
|
+
"license": "BlueOak-1.0.0",
|
|
2322
|
+
"engines": {
|
|
2323
|
+
"node": "20 || >=22"
|
|
2324
|
+
}
|
|
2325
|
+
},
|
|
1987
2326
|
"node_modules/magic-string": {
|
|
1988
2327
|
"version": "0.30.21",
|
|
1989
2328
|
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
|
@@ -1993,6 +2332,13 @@
|
|
|
1993
2332
|
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1994
2333
|
}
|
|
1995
2334
|
},
|
|
2335
|
+
"node_modules/mdn-data": {
|
|
2336
|
+
"version": "2.27.1",
|
|
2337
|
+
"resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.27.1.tgz",
|
|
2338
|
+
"integrity": "sha512-9Yubnt3e8A0OKwxYSXyhLymGW4sCufcLG6VdiDdUGVkPhpqLxlvP5vl1983gQjJl3tqbrM731mjaZaP68AgosQ==",
|
|
2339
|
+
"dev": true,
|
|
2340
|
+
"license": "CC0-1.0"
|
|
2341
|
+
},
|
|
1996
2342
|
"node_modules/minimatch": {
|
|
1997
2343
|
"version": "9.0.9",
|
|
1998
2344
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
|
|
@@ -2045,6 +2391,32 @@
|
|
|
2045
2391
|
],
|
|
2046
2392
|
"license": "MIT"
|
|
2047
2393
|
},
|
|
2394
|
+
"node_modules/parse5": {
|
|
2395
|
+
"version": "8.0.1",
|
|
2396
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-8.0.1.tgz",
|
|
2397
|
+
"integrity": "sha512-z1e/HMG90obSGeidlli3hj7cbocou0/wa5HacvI3ASx34PecNjNQeaHNo5WIZpWofN9kgkqV1q5YvXe3F0FoPw==",
|
|
2398
|
+
"dev": true,
|
|
2399
|
+
"license": "MIT",
|
|
2400
|
+
"dependencies": {
|
|
2401
|
+
"entities": "^8.0.0"
|
|
2402
|
+
},
|
|
2403
|
+
"funding": {
|
|
2404
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
2405
|
+
}
|
|
2406
|
+
},
|
|
2407
|
+
"node_modules/parse5/node_modules/entities": {
|
|
2408
|
+
"version": "8.0.0",
|
|
2409
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-8.0.0.tgz",
|
|
2410
|
+
"integrity": "sha512-zwfzJecQ/Uej6tusMqwAqU/6KL2XaB2VZ2Jg54Je6ahNBGNH6Ek6g3jjNCF0fG9EWQKGZNddNjU5F1ZQn/sBnA==",
|
|
2411
|
+
"dev": true,
|
|
2412
|
+
"license": "BSD-2-Clause",
|
|
2413
|
+
"engines": {
|
|
2414
|
+
"node": ">=20.19.0"
|
|
2415
|
+
},
|
|
2416
|
+
"funding": {
|
|
2417
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
2418
|
+
}
|
|
2419
|
+
},
|
|
2048
2420
|
"node_modules/path-browserify": {
|
|
2049
2421
|
"version": "1.0.1",
|
|
2050
2422
|
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
@@ -2128,6 +2500,26 @@
|
|
|
2128
2500
|
"node": "^10 || ^12 || >=14"
|
|
2129
2501
|
}
|
|
2130
2502
|
},
|
|
2503
|
+
"node_modules/punycode": {
|
|
2504
|
+
"version": "2.3.1",
|
|
2505
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
2506
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
2507
|
+
"dev": true,
|
|
2508
|
+
"license": "MIT",
|
|
2509
|
+
"engines": {
|
|
2510
|
+
"node": ">=6"
|
|
2511
|
+
}
|
|
2512
|
+
},
|
|
2513
|
+
"node_modules/require-from-string": {
|
|
2514
|
+
"version": "2.0.2",
|
|
2515
|
+
"resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
|
|
2516
|
+
"integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==",
|
|
2517
|
+
"dev": true,
|
|
2518
|
+
"license": "MIT",
|
|
2519
|
+
"engines": {
|
|
2520
|
+
"node": ">=0.10.0"
|
|
2521
|
+
}
|
|
2522
|
+
},
|
|
2131
2523
|
"node_modules/rolldown": {
|
|
2132
2524
|
"version": "1.0.0-rc.17",
|
|
2133
2525
|
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.0-rc.17.tgz",
|
|
@@ -2207,6 +2599,19 @@
|
|
|
2207
2599
|
"fsevents": "~2.3.2"
|
|
2208
2600
|
}
|
|
2209
2601
|
},
|
|
2602
|
+
"node_modules/saxes": {
|
|
2603
|
+
"version": "6.0.0",
|
|
2604
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
|
2605
|
+
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
|
2606
|
+
"dev": true,
|
|
2607
|
+
"license": "ISC",
|
|
2608
|
+
"dependencies": {
|
|
2609
|
+
"xmlchars": "^2.2.0"
|
|
2610
|
+
},
|
|
2611
|
+
"engines": {
|
|
2612
|
+
"node": ">=v12.22.7"
|
|
2613
|
+
}
|
|
2614
|
+
},
|
|
2210
2615
|
"node_modules/siginfo": {
|
|
2211
2616
|
"version": "2.0.0",
|
|
2212
2617
|
"resolved": "https://registry.npmjs.org/siginfo/-/siginfo-2.0.0.tgz",
|
|
@@ -2258,6 +2663,13 @@
|
|
|
2258
2663
|
"dev": true,
|
|
2259
2664
|
"license": "MIT"
|
|
2260
2665
|
},
|
|
2666
|
+
"node_modules/symbol-tree": {
|
|
2667
|
+
"version": "3.2.4",
|
|
2668
|
+
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
|
2669
|
+
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
|
2670
|
+
"dev": true,
|
|
2671
|
+
"license": "MIT"
|
|
2672
|
+
},
|
|
2261
2673
|
"node_modules/terser": {
|
|
2262
2674
|
"version": "5.46.2",
|
|
2263
2675
|
"resolved": "https://registry.npmjs.org/terser/-/terser-5.46.2.tgz",
|
|
@@ -2321,6 +2733,52 @@
|
|
|
2321
2733
|
"node": ">=14.0.0"
|
|
2322
2734
|
}
|
|
2323
2735
|
},
|
|
2736
|
+
"node_modules/tldts": {
|
|
2737
|
+
"version": "7.0.30",
|
|
2738
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-7.0.30.tgz",
|
|
2739
|
+
"integrity": "sha512-ELrFxuqsDdHUwoh0XxDbxuLD3Wnz49Z57IFvTtvWy1hJdcMZjXLIuonjilCiWHlT2GbE4Wlv1wKVTzDFnXH1aw==",
|
|
2740
|
+
"dev": true,
|
|
2741
|
+
"license": "MIT",
|
|
2742
|
+
"dependencies": {
|
|
2743
|
+
"tldts-core": "^7.0.30"
|
|
2744
|
+
},
|
|
2745
|
+
"bin": {
|
|
2746
|
+
"tldts": "bin/cli.js"
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2749
|
+
"node_modules/tldts-core": {
|
|
2750
|
+
"version": "7.0.30",
|
|
2751
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.0.30.tgz",
|
|
2752
|
+
"integrity": "sha512-uiHN8PIB1VmWyS98eZYja4xzlYqeFZVjb4OuYlJQnZAuJhMw4PbKQOKgHKhBdJR3FE/t5mUQ1Kd80++B+qhD1Q==",
|
|
2753
|
+
"dev": true,
|
|
2754
|
+
"license": "MIT"
|
|
2755
|
+
},
|
|
2756
|
+
"node_modules/tough-cookie": {
|
|
2757
|
+
"version": "6.0.1",
|
|
2758
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-6.0.1.tgz",
|
|
2759
|
+
"integrity": "sha512-LktZQb3IeoUWB9lqR5EWTHgW/VTITCXg4D21M+lvybRVdylLrRMnqaIONLVb5mav8vM19m44HIcGq4qASeu2Qw==",
|
|
2760
|
+
"dev": true,
|
|
2761
|
+
"license": "BSD-3-Clause",
|
|
2762
|
+
"dependencies": {
|
|
2763
|
+
"tldts": "^7.0.5"
|
|
2764
|
+
},
|
|
2765
|
+
"engines": {
|
|
2766
|
+
"node": ">=16"
|
|
2767
|
+
}
|
|
2768
|
+
},
|
|
2769
|
+
"node_modules/tr46": {
|
|
2770
|
+
"version": "6.0.0",
|
|
2771
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-6.0.0.tgz",
|
|
2772
|
+
"integrity": "sha512-bLVMLPtstlZ4iMQHpFHTR7GAGj2jxi8Dg0s2h2MafAE4uSWF98FC/3MomU51iQAMf8/qDUbKWf5GxuvvVcXEhw==",
|
|
2773
|
+
"dev": true,
|
|
2774
|
+
"license": "MIT",
|
|
2775
|
+
"dependencies": {
|
|
2776
|
+
"punycode": "^2.3.1"
|
|
2777
|
+
},
|
|
2778
|
+
"engines": {
|
|
2779
|
+
"node": ">=20"
|
|
2780
|
+
}
|
|
2781
|
+
},
|
|
2324
2782
|
"node_modules/tslib": {
|
|
2325
2783
|
"version": "2.8.1",
|
|
2326
2784
|
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
|
|
@@ -2343,6 +2801,16 @@
|
|
|
2343
2801
|
"node": ">=14.17"
|
|
2344
2802
|
}
|
|
2345
2803
|
},
|
|
2804
|
+
"node_modules/undici": {
|
|
2805
|
+
"version": "7.25.0",
|
|
2806
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.25.0.tgz",
|
|
2807
|
+
"integrity": "sha512-xXnp4kTyor2Zq+J1FfPI6Eq3ew5h6Vl0F/8d9XU5zZQf1tX9s2Su1/3PiMmUANFULpmksxkClamIZcaUqryHsQ==",
|
|
2808
|
+
"dev": true,
|
|
2809
|
+
"license": "MIT",
|
|
2810
|
+
"engines": {
|
|
2811
|
+
"node": ">=20.18.1"
|
|
2812
|
+
}
|
|
2813
|
+
},
|
|
2346
2814
|
"node_modules/vite": {
|
|
2347
2815
|
"version": "5.4.21",
|
|
2348
2816
|
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz",
|
|
@@ -2694,6 +3162,54 @@
|
|
|
2694
3162
|
"typescript": ">=5.0.0"
|
|
2695
3163
|
}
|
|
2696
3164
|
},
|
|
3165
|
+
"node_modules/w3c-xmlserializer": {
|
|
3166
|
+
"version": "5.0.0",
|
|
3167
|
+
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
|
3168
|
+
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
|
3169
|
+
"dev": true,
|
|
3170
|
+
"license": "MIT",
|
|
3171
|
+
"dependencies": {
|
|
3172
|
+
"xml-name-validator": "^5.0.0"
|
|
3173
|
+
},
|
|
3174
|
+
"engines": {
|
|
3175
|
+
"node": ">=18"
|
|
3176
|
+
}
|
|
3177
|
+
},
|
|
3178
|
+
"node_modules/webidl-conversions": {
|
|
3179
|
+
"version": "8.0.1",
|
|
3180
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-8.0.1.tgz",
|
|
3181
|
+
"integrity": "sha512-BMhLD/Sw+GbJC21C/UgyaZX41nPt8bUTg+jWyDeg7e7YN4xOM05YPSIXceACnXVtqyEw/LMClUQMtMZ+PGGpqQ==",
|
|
3182
|
+
"dev": true,
|
|
3183
|
+
"license": "BSD-2-Clause",
|
|
3184
|
+
"engines": {
|
|
3185
|
+
"node": ">=20"
|
|
3186
|
+
}
|
|
3187
|
+
},
|
|
3188
|
+
"node_modules/whatwg-mimetype": {
|
|
3189
|
+
"version": "5.0.0",
|
|
3190
|
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-5.0.0.tgz",
|
|
3191
|
+
"integrity": "sha512-sXcNcHOC51uPGF0P/D4NVtrkjSU2fNsm9iog4ZvZJsL3rjoDAzXZhkm2MWt1y+PUdggKAYVoMAIYcs78wJ51Cw==",
|
|
3192
|
+
"dev": true,
|
|
3193
|
+
"license": "MIT",
|
|
3194
|
+
"engines": {
|
|
3195
|
+
"node": ">=20"
|
|
3196
|
+
}
|
|
3197
|
+
},
|
|
3198
|
+
"node_modules/whatwg-url": {
|
|
3199
|
+
"version": "16.0.1",
|
|
3200
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-16.0.1.tgz",
|
|
3201
|
+
"integrity": "sha512-1to4zXBxmXHV3IiSSEInrreIlu02vUOvrhxJJH5vcxYTBDAx51cqZiKdyTxlecdKNSjj8EcxGBxNf6Vg+945gw==",
|
|
3202
|
+
"dev": true,
|
|
3203
|
+
"license": "MIT",
|
|
3204
|
+
"dependencies": {
|
|
3205
|
+
"@exodus/bytes": "^1.11.0",
|
|
3206
|
+
"tr46": "^6.0.0",
|
|
3207
|
+
"webidl-conversions": "^8.0.1"
|
|
3208
|
+
},
|
|
3209
|
+
"engines": {
|
|
3210
|
+
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
|
|
3211
|
+
}
|
|
3212
|
+
},
|
|
2697
3213
|
"node_modules/why-is-node-running": {
|
|
2698
3214
|
"version": "2.3.0",
|
|
2699
3215
|
"resolved": "https://registry.npmjs.org/why-is-node-running/-/why-is-node-running-2.3.0.tgz",
|
|
@@ -2710,6 +3226,23 @@
|
|
|
2710
3226
|
"engines": {
|
|
2711
3227
|
"node": ">=8"
|
|
2712
3228
|
}
|
|
3229
|
+
},
|
|
3230
|
+
"node_modules/xml-name-validator": {
|
|
3231
|
+
"version": "5.0.0",
|
|
3232
|
+
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
|
3233
|
+
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
|
3234
|
+
"dev": true,
|
|
3235
|
+
"license": "Apache-2.0",
|
|
3236
|
+
"engines": {
|
|
3237
|
+
"node": ">=18"
|
|
3238
|
+
}
|
|
3239
|
+
},
|
|
3240
|
+
"node_modules/xmlchars": {
|
|
3241
|
+
"version": "2.2.0",
|
|
3242
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
3243
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
|
3244
|
+
"dev": true,
|
|
3245
|
+
"license": "MIT"
|
|
2713
3246
|
}
|
|
2714
3247
|
}
|
|
2715
3248
|
}
|