presently 0.1.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.
- checksums.yaml +7 -0
- data/bin/presently +13 -0
- data/lib/presently/application.rb +104 -0
- data/lib/presently/clock.rb +77 -0
- data/lib/presently/display_view.rb +73 -0
- data/lib/presently/environment/application.rb +62 -0
- data/lib/presently/page.rb +38 -0
- data/lib/presently/page.xrb +31 -0
- data/lib/presently/presentation.rb +72 -0
- data/lib/presently/presentation_controller.rb +181 -0
- data/lib/presently/presenter_view.rb +264 -0
- data/lib/presently/slide.rb +148 -0
- data/lib/presently/slide_view.rb +92 -0
- data/lib/presently/state.rb +66 -0
- data/lib/presently/version.rb +9 -0
- data/lib/presently.rb +9 -0
- data/license.md +21 -0
- data/public/_components/@socketry/syntax/Syntax/CodeElement.js +337 -0
- data/public/_components/@socketry/syntax/Syntax/Errors.js +52 -0
- data/public/_components/@socketry/syntax/Syntax/Language/apache.js +49 -0
- data/public/_components/@socketry/syntax/Syntax/Language/applescript.js +157 -0
- data/public/_components/@socketry/syntax/Syntax/Language/assembly.js +42 -0
- data/public/_components/@socketry/syntax/Syntax/Language/bash-script.js +108 -0
- data/public/_components/@socketry/syntax/Syntax/Language/bash.js +32 -0
- data/public/_components/@socketry/syntax/Syntax/Language/basic.js +232 -0
- data/public/_components/@socketry/syntax/Syntax/Language/c++.js +1 -0
- data/public/_components/@socketry/syntax/Syntax/Language/c.js +1 -0
- data/public/_components/@socketry/syntax/Syntax/Language/clang.js +201 -0
- data/public/_components/@socketry/syntax/Syntax/Language/cpp.js +1 -0
- data/public/_components/@socketry/syntax/Syntax/Language/csharp.js +166 -0
- data/public/_components/@socketry/syntax/Syntax/Language/css.js +244 -0
- data/public/_components/@socketry/syntax/Syntax/Language/diff.js +24 -0
- data/public/_components/@socketry/syntax/Syntax/Language/go.js +135 -0
- data/public/_components/@socketry/syntax/Syntax/Language/haskell.js +110 -0
- data/public/_components/@socketry/syntax/Syntax/Language/html.js +69 -0
- data/public/_components/@socketry/syntax/Syntax/Language/io.js +68 -0
- data/public/_components/@socketry/syntax/Syntax/Language/java.js +134 -0
- data/public/_components/@socketry/syntax/Syntax/Language/javascript.js +89 -0
- data/public/_components/@socketry/syntax/Syntax/Language/json.js +36 -0
- data/public/_components/@socketry/syntax/Syntax/Language/lisp.js +38 -0
- data/public/_components/@socketry/syntax/Syntax/Language/lua.js +87 -0
- data/public/_components/@socketry/syntax/Syntax/Language/markdown.js +112 -0
- data/public/_components/@socketry/syntax/Syntax/Language/nginx.js +37 -0
- data/public/_components/@socketry/syntax/Syntax/Language/objective-c.js +1 -0
- data/public/_components/@socketry/syntax/Syntax/Language/ocaml.js +225 -0
- data/public/_components/@socketry/syntax/Syntax/Language/pascal.js +166 -0
- data/public/_components/@socketry/syntax/Syntax/Language/patch.js +2 -0
- data/public/_components/@socketry/syntax/Syntax/Language/perl5.js +317 -0
- data/public/_components/@socketry/syntax/Syntax/Language/php-script.js +112 -0
- data/public/_components/@socketry/syntax/Syntax/Language/php.js +18 -0
- data/public/_components/@socketry/syntax/Syntax/Language/plain.js +20 -0
- data/public/_components/@socketry/syntax/Syntax/Language/protobuf.js +77 -0
- data/public/_components/@socketry/syntax/Syntax/Language/python.js +208 -0
- data/public/_components/@socketry/syntax/Syntax/Language/ruby.js +124 -0
- data/public/_components/@socketry/syntax/Syntax/Language/scala.js +81 -0
- data/public/_components/@socketry/syntax/Syntax/Language/smalltalk.js +30 -0
- data/public/_components/@socketry/syntax/Syntax/Language/sql.js +865 -0
- data/public/_components/@socketry/syntax/Syntax/Language/super-collider.js +70 -0
- data/public/_components/@socketry/syntax/Syntax/Language/swift.js +176 -0
- data/public/_components/@socketry/syntax/Syntax/Language/xml.js +76 -0
- data/public/_components/@socketry/syntax/Syntax/Language/xrb.js +33 -0
- data/public/_components/@socketry/syntax/Syntax/Language/yaml.js +29 -0
- data/public/_components/@socketry/syntax/Syntax/Language.js +276 -0
- data/public/_components/@socketry/syntax/Syntax/Loader.js +78 -0
- data/public/_components/@socketry/syntax/Syntax/Match.js +546 -0
- data/public/_components/@socketry/syntax/Syntax/Rule.js +306 -0
- data/public/_components/@socketry/syntax/Syntax.js +356 -0
- data/public/_components/@socketry/syntax/bin/syntax-ast.js +42 -0
- data/public/_components/@socketry/syntax/examples/_template.html +53 -0
- data/public/_components/@socketry/syntax/examples/apache.html +72 -0
- data/public/_components/@socketry/syntax/examples/applescript.html +72 -0
- data/public/_components/@socketry/syntax/examples/assembly.html +74 -0
- data/public/_components/@socketry/syntax/examples/bash.html +90 -0
- data/public/_components/@socketry/syntax/examples/basic.html +87 -0
- data/public/_components/@socketry/syntax/examples/c.html +141 -0
- data/public/_components/@socketry/syntax/examples/clang.html +202 -0
- data/public/_components/@socketry/syntax/examples/csharp.html +110 -0
- data/public/_components/@socketry/syntax/examples/css-colors.html +179 -0
- data/public/_components/@socketry/syntax/examples/custom-theme.html +155 -0
- data/public/_components/@socketry/syntax/examples/diff.html +142 -0
- data/public/_components/@socketry/syntax/examples/examples.css +216 -0
- data/public/_components/@socketry/syntax/examples/go.html +413 -0
- data/public/_components/@socketry/syntax/examples/haskell.html +373 -0
- data/public/_components/@socketry/syntax/examples/html.html +316 -0
- data/public/_components/@socketry/syntax/examples/index.html +97 -0
- data/public/_components/@socketry/syntax/examples/io.html +552 -0
- data/public/_components/@socketry/syntax/examples/java.html +786 -0
- data/public/_components/@socketry/syntax/examples/javascript.html +199 -0
- data/public/_components/@socketry/syntax/examples/json.html +150 -0
- data/public/_components/@socketry/syntax/examples/lisp.html +476 -0
- data/public/_components/@socketry/syntax/examples/lua.html +737 -0
- data/public/_components/@socketry/syntax/examples/markdown.html +121 -0
- data/public/_components/@socketry/syntax/examples/mixed.html +306 -0
- data/public/_components/@socketry/syntax/examples/nginx.html +554 -0
- data/public/_components/@socketry/syntax/examples/ocaml.html +596 -0
- data/public/_components/@socketry/syntax/examples/pascal.html +762 -0
- data/public/_components/@socketry/syntax/examples/perl5.html +488 -0
- data/public/_components/@socketry/syntax/examples/php-script.html +142 -0
- data/public/_components/@socketry/syntax/examples/php.html +95 -0
- data/public/_components/@socketry/syntax/examples/plain.html +222 -0
- data/public/_components/@socketry/syntax/examples/protobuf.html +405 -0
- data/public/_components/@socketry/syntax/examples/python.html +82 -0
- data/public/_components/@socketry/syntax/examples/readme.md +79 -0
- data/public/_components/@socketry/syntax/examples/ruby.html +58 -0
- data/public/_components/@socketry/syntax/examples/scala.html +41 -0
- data/public/_components/@socketry/syntax/examples/smalltalk.html +436 -0
- data/public/_components/@socketry/syntax/examples/sql.html +373 -0
- data/public/_components/@socketry/syntax/examples/super-collider.html +55 -0
- data/public/_components/@socketry/syntax/examples/swift.html +176 -0
- data/public/_components/@socketry/syntax/examples/wrap-demo.html +103 -0
- data/public/_components/@socketry/syntax/examples/xml.html +112 -0
- data/public/_components/@socketry/syntax/examples/xrb.html +37 -0
- data/public/_components/@socketry/syntax/examples/yaml.html +72 -0
- data/public/_components/@socketry/syntax/license.md +21 -0
- data/public/_components/@socketry/syntax/package-lock.json +834 -0
- data/public/_components/@socketry/syntax/package.json +43 -0
- data/public/_components/@socketry/syntax/readme.md +162 -0
- data/public/_components/@socketry/syntax/test/Syntax/CodeElement.js +306 -0
- data/public/_components/@socketry/syntax/test/Syntax/ErrorHandling.js +85 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/apache.js +153 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/applescript.js +198 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/assembly.js +209 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/bash-script.js +225 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/bash.js +162 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/basic.js +265 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/clang.js +390 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/csharp.js +436 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/css.js +431 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/diff.js +206 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/go.js +386 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/haskell.js +454 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/html.js +111 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/io.js +229 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/java.js +362 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/javascript.js +101 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/json.js +101 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/lisp.js +224 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/lua.js +307 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/markdown.js +163 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/nginx.js +267 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/ocaml.js +299 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/pascal.js +311 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/perl5.js +333 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/php-script.js +197 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/php.js +92 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/plain.js +327 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/protobuf.js +294 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/python.js +213 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/ruby.js +70 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/scala.js +75 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/smalltalk.js +223 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/sql.js +281 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/super-collider.js +66 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/swift.js +71 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/xml.js +170 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/xrb.js +57 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language/yaml.js +123 -0
- data/public/_components/@socketry/syntax/test/Syntax/Language.js +62 -0
- data/public/_components/@socketry/syntax/test/Syntax/Match.js +40 -0
- data/public/_components/@socketry/syntax/test/Syntax/Rule.js +251 -0
- data/public/_components/@socketry/syntax/test/Syntax.js +38 -0
- data/public/_components/@socketry/syntax/test/helpers/ast-matcher.js +90 -0
- data/public/_components/@socketry/syntax/themes/base/apache.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/applescript.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/assembly.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/bash.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/basic.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/c.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/clang.css +0 -0
- data/public/_components/@socketry/syntax/themes/base/csharp.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/css.css +22 -0
- data/public/_components/@socketry/syntax/themes/base/diff.css +48 -0
- data/public/_components/@socketry/syntax/themes/base/go.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/haskell.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/html.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/io.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/java.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/javascript.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/json.css +41 -0
- data/public/_components/@socketry/syntax/themes/base/lisp.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/lua.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/markdown.css +16 -0
- data/public/_components/@socketry/syntax/themes/base/nginx.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/ocaml.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/pascal.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/perl5.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/php-script.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/php.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/plain.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/protobuf.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/python.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/ruby.css +23 -0
- data/public/_components/@socketry/syntax/themes/base/scala.css +3 -0
- data/public/_components/@socketry/syntax/themes/base/smalltalk.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/sql.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/super-collider.css +33 -0
- data/public/_components/@socketry/syntax/themes/base/swift.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/syntax.css +63 -0
- data/public/_components/@socketry/syntax/themes/base/xml.css +1 -0
- data/public/_components/@socketry/syntax/themes/base/xrb.css +29 -0
- data/public/_components/@socketry/syntax/themes/base/yaml.css +1 -0
- data/public/_components/@socketry/syntax/themes/theming.md +233 -0
- data/public/_components/@socketry/syntax/update-examples.js +135 -0
- data/public/_static/index.css +593 -0
- data/public/application.js +147 -0
- data/readme.md +69 -0
- data/releases.md +3 -0
- data/templates/code.xrb +12 -0
- data/templates/default.xrb +5 -0
- data/templates/image.xrb +8 -0
- data/templates/section.xrb +5 -0
- data/templates/title.xrb +8 -0
- data/templates/translation.xrb +8 -0
- data/templates/two_column.xrb +8 -0
- metadata +280 -0
|
@@ -0,0 +1,834 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@socketry/syntax",
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@socketry/syntax",
|
|
9
|
+
"version": "0.3.2",
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"devDependencies": {
|
|
12
|
+
"jsdom": "^25.0.0",
|
|
13
|
+
"prettier": "^3.6.2"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"node_modules/@asamuzakjp/css-color": {
|
|
17
|
+
"version": "3.2.0",
|
|
18
|
+
"resolved": "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.2.0.tgz",
|
|
19
|
+
"integrity": "sha512-K1A6z8tS3XsmCMM86xoWdn7Fkdn9m6RSVtocUrJYIwZnFVkng/PvkEoWtOWmP+Scc6saYWHWZYbndEEXxl24jw==",
|
|
20
|
+
"dev": true,
|
|
21
|
+
"license": "MIT",
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@csstools/css-calc": "^2.1.3",
|
|
24
|
+
"@csstools/css-color-parser": "^3.0.9",
|
|
25
|
+
"@csstools/css-parser-algorithms": "^3.0.4",
|
|
26
|
+
"@csstools/css-tokenizer": "^3.0.3",
|
|
27
|
+
"lru-cache": "^10.4.3"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"node_modules/@csstools/color-helpers": {
|
|
31
|
+
"version": "5.1.0",
|
|
32
|
+
"resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.1.0.tgz",
|
|
33
|
+
"integrity": "sha512-S11EXWJyy0Mz5SYvRmY8nJYTFFd1LCNV+7cXyAgQtOOuzb4EsgfqDufL+9esx72/eLhsRdGZwaldu/h+E4t4BA==",
|
|
34
|
+
"dev": true,
|
|
35
|
+
"funding": [
|
|
36
|
+
{
|
|
37
|
+
"type": "github",
|
|
38
|
+
"url": "https://github.com/sponsors/csstools"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"type": "opencollective",
|
|
42
|
+
"url": "https://opencollective.com/csstools"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"license": "MIT-0",
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=18"
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
"node_modules/@csstools/css-calc": {
|
|
51
|
+
"version": "2.1.4",
|
|
52
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.4.tgz",
|
|
53
|
+
"integrity": "sha512-3N8oaj+0juUw/1H3YwmDDJXCgTB1gKU6Hc/bB502u9zR0q2vd786XJH9QfrKIEgFlZmhZiq6epXl4rHqhzsIgQ==",
|
|
54
|
+
"dev": true,
|
|
55
|
+
"funding": [
|
|
56
|
+
{
|
|
57
|
+
"type": "github",
|
|
58
|
+
"url": "https://github.com/sponsors/csstools"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"type": "opencollective",
|
|
62
|
+
"url": "https://opencollective.com/csstools"
|
|
63
|
+
}
|
|
64
|
+
],
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=18"
|
|
68
|
+
},
|
|
69
|
+
"peerDependencies": {
|
|
70
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
71
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"node_modules/@csstools/css-color-parser": {
|
|
75
|
+
"version": "3.1.0",
|
|
76
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.1.0.tgz",
|
|
77
|
+
"integrity": "sha512-nbtKwh3a6xNVIp/VRuXV64yTKnb1IjTAEEh3irzS+HkKjAOYLTGNb9pmVNntZ8iVBHcWDA2Dof0QtPgFI1BaTA==",
|
|
78
|
+
"dev": true,
|
|
79
|
+
"funding": [
|
|
80
|
+
{
|
|
81
|
+
"type": "github",
|
|
82
|
+
"url": "https://github.com/sponsors/csstools"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "opencollective",
|
|
86
|
+
"url": "https://opencollective.com/csstools"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"license": "MIT",
|
|
90
|
+
"dependencies": {
|
|
91
|
+
"@csstools/color-helpers": "^5.1.0",
|
|
92
|
+
"@csstools/css-calc": "^2.1.4"
|
|
93
|
+
},
|
|
94
|
+
"engines": {
|
|
95
|
+
"node": ">=18"
|
|
96
|
+
},
|
|
97
|
+
"peerDependencies": {
|
|
98
|
+
"@csstools/css-parser-algorithms": "^3.0.5",
|
|
99
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"node_modules/@csstools/css-parser-algorithms": {
|
|
103
|
+
"version": "3.0.5",
|
|
104
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz",
|
|
105
|
+
"integrity": "sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==",
|
|
106
|
+
"dev": true,
|
|
107
|
+
"funding": [
|
|
108
|
+
{
|
|
109
|
+
"type": "github",
|
|
110
|
+
"url": "https://github.com/sponsors/csstools"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"type": "opencollective",
|
|
114
|
+
"url": "https://opencollective.com/csstools"
|
|
115
|
+
}
|
|
116
|
+
],
|
|
117
|
+
"license": "MIT",
|
|
118
|
+
"peer": true,
|
|
119
|
+
"engines": {
|
|
120
|
+
"node": ">=18"
|
|
121
|
+
},
|
|
122
|
+
"peerDependencies": {
|
|
123
|
+
"@csstools/css-tokenizer": "^3.0.4"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"node_modules/@csstools/css-tokenizer": {
|
|
127
|
+
"version": "3.0.4",
|
|
128
|
+
"resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz",
|
|
129
|
+
"integrity": "sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==",
|
|
130
|
+
"dev": true,
|
|
131
|
+
"funding": [
|
|
132
|
+
{
|
|
133
|
+
"type": "github",
|
|
134
|
+
"url": "https://github.com/sponsors/csstools"
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "opencollective",
|
|
138
|
+
"url": "https://opencollective.com/csstools"
|
|
139
|
+
}
|
|
140
|
+
],
|
|
141
|
+
"license": "MIT",
|
|
142
|
+
"peer": true,
|
|
143
|
+
"engines": {
|
|
144
|
+
"node": ">=18"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
"node_modules/agent-base": {
|
|
148
|
+
"version": "7.1.4",
|
|
149
|
+
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz",
|
|
150
|
+
"integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==",
|
|
151
|
+
"dev": true,
|
|
152
|
+
"license": "MIT",
|
|
153
|
+
"engines": {
|
|
154
|
+
"node": ">= 14"
|
|
155
|
+
}
|
|
156
|
+
},
|
|
157
|
+
"node_modules/asynckit": {
|
|
158
|
+
"version": "0.4.0",
|
|
159
|
+
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
|
160
|
+
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
|
|
161
|
+
"dev": true,
|
|
162
|
+
"license": "MIT"
|
|
163
|
+
},
|
|
164
|
+
"node_modules/call-bind-apply-helpers": {
|
|
165
|
+
"version": "1.0.2",
|
|
166
|
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
|
167
|
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
|
168
|
+
"dev": true,
|
|
169
|
+
"license": "MIT",
|
|
170
|
+
"dependencies": {
|
|
171
|
+
"es-errors": "^1.3.0",
|
|
172
|
+
"function-bind": "^1.1.2"
|
|
173
|
+
},
|
|
174
|
+
"engines": {
|
|
175
|
+
"node": ">= 0.4"
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
"node_modules/combined-stream": {
|
|
179
|
+
"version": "1.0.8",
|
|
180
|
+
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
|
181
|
+
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
|
182
|
+
"dev": true,
|
|
183
|
+
"license": "MIT",
|
|
184
|
+
"dependencies": {
|
|
185
|
+
"delayed-stream": "~1.0.0"
|
|
186
|
+
},
|
|
187
|
+
"engines": {
|
|
188
|
+
"node": ">= 0.8"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"node_modules/cssstyle": {
|
|
192
|
+
"version": "4.6.0",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.6.0.tgz",
|
|
194
|
+
"integrity": "sha512-2z+rWdzbbSZv6/rhtvzvqeZQHrBaqgogqt85sqFNbabZOuFbCVFb8kPeEtZjiKkbrm395irpNKiYeFeLiQnFPg==",
|
|
195
|
+
"dev": true,
|
|
196
|
+
"license": "MIT",
|
|
197
|
+
"dependencies": {
|
|
198
|
+
"@asamuzakjp/css-color": "^3.2.0",
|
|
199
|
+
"rrweb-cssom": "^0.8.0"
|
|
200
|
+
},
|
|
201
|
+
"engines": {
|
|
202
|
+
"node": ">=18"
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"node_modules/cssstyle/node_modules/rrweb-cssom": {
|
|
206
|
+
"version": "0.8.0",
|
|
207
|
+
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz",
|
|
208
|
+
"integrity": "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==",
|
|
209
|
+
"dev": true,
|
|
210
|
+
"license": "MIT"
|
|
211
|
+
},
|
|
212
|
+
"node_modules/data-urls": {
|
|
213
|
+
"version": "5.0.0",
|
|
214
|
+
"resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz",
|
|
215
|
+
"integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==",
|
|
216
|
+
"dev": true,
|
|
217
|
+
"license": "MIT",
|
|
218
|
+
"dependencies": {
|
|
219
|
+
"whatwg-mimetype": "^4.0.0",
|
|
220
|
+
"whatwg-url": "^14.0.0"
|
|
221
|
+
},
|
|
222
|
+
"engines": {
|
|
223
|
+
"node": ">=18"
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"node_modules/debug": {
|
|
227
|
+
"version": "4.4.3",
|
|
228
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
229
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
230
|
+
"dev": true,
|
|
231
|
+
"license": "MIT",
|
|
232
|
+
"dependencies": {
|
|
233
|
+
"ms": "^2.1.3"
|
|
234
|
+
},
|
|
235
|
+
"engines": {
|
|
236
|
+
"node": ">=6.0"
|
|
237
|
+
},
|
|
238
|
+
"peerDependenciesMeta": {
|
|
239
|
+
"supports-color": {
|
|
240
|
+
"optional": true
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
"node_modules/decimal.js": {
|
|
245
|
+
"version": "10.6.0",
|
|
246
|
+
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.6.0.tgz",
|
|
247
|
+
"integrity": "sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==",
|
|
248
|
+
"dev": true,
|
|
249
|
+
"license": "MIT"
|
|
250
|
+
},
|
|
251
|
+
"node_modules/delayed-stream": {
|
|
252
|
+
"version": "1.0.0",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
|
254
|
+
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
|
|
255
|
+
"dev": true,
|
|
256
|
+
"license": "MIT",
|
|
257
|
+
"engines": {
|
|
258
|
+
"node": ">=0.4.0"
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"node_modules/dunder-proto": {
|
|
262
|
+
"version": "1.0.1",
|
|
263
|
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
|
264
|
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
|
265
|
+
"dev": true,
|
|
266
|
+
"license": "MIT",
|
|
267
|
+
"dependencies": {
|
|
268
|
+
"call-bind-apply-helpers": "^1.0.1",
|
|
269
|
+
"es-errors": "^1.3.0",
|
|
270
|
+
"gopd": "^1.2.0"
|
|
271
|
+
},
|
|
272
|
+
"engines": {
|
|
273
|
+
"node": ">= 0.4"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"node_modules/entities": {
|
|
277
|
+
"version": "6.0.1",
|
|
278
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz",
|
|
279
|
+
"integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==",
|
|
280
|
+
"dev": true,
|
|
281
|
+
"license": "BSD-2-Clause",
|
|
282
|
+
"engines": {
|
|
283
|
+
"node": ">=0.12"
|
|
284
|
+
},
|
|
285
|
+
"funding": {
|
|
286
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
287
|
+
}
|
|
288
|
+
},
|
|
289
|
+
"node_modules/es-define-property": {
|
|
290
|
+
"version": "1.0.1",
|
|
291
|
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
|
292
|
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
|
293
|
+
"dev": true,
|
|
294
|
+
"license": "MIT",
|
|
295
|
+
"engines": {
|
|
296
|
+
"node": ">= 0.4"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"node_modules/es-errors": {
|
|
300
|
+
"version": "1.3.0",
|
|
301
|
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
|
302
|
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
|
303
|
+
"dev": true,
|
|
304
|
+
"license": "MIT",
|
|
305
|
+
"engines": {
|
|
306
|
+
"node": ">= 0.4"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"node_modules/es-object-atoms": {
|
|
310
|
+
"version": "1.1.1",
|
|
311
|
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
|
312
|
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
|
313
|
+
"dev": true,
|
|
314
|
+
"license": "MIT",
|
|
315
|
+
"dependencies": {
|
|
316
|
+
"es-errors": "^1.3.0"
|
|
317
|
+
},
|
|
318
|
+
"engines": {
|
|
319
|
+
"node": ">= 0.4"
|
|
320
|
+
}
|
|
321
|
+
},
|
|
322
|
+
"node_modules/es-set-tostringtag": {
|
|
323
|
+
"version": "2.1.0",
|
|
324
|
+
"resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
|
|
325
|
+
"integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
|
|
326
|
+
"dev": true,
|
|
327
|
+
"license": "MIT",
|
|
328
|
+
"dependencies": {
|
|
329
|
+
"es-errors": "^1.3.0",
|
|
330
|
+
"get-intrinsic": "^1.2.6",
|
|
331
|
+
"has-tostringtag": "^1.0.2",
|
|
332
|
+
"hasown": "^2.0.2"
|
|
333
|
+
},
|
|
334
|
+
"engines": {
|
|
335
|
+
"node": ">= 0.4"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"node_modules/form-data": {
|
|
339
|
+
"version": "4.0.4",
|
|
340
|
+
"resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz",
|
|
341
|
+
"integrity": "sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==",
|
|
342
|
+
"dev": true,
|
|
343
|
+
"license": "MIT",
|
|
344
|
+
"dependencies": {
|
|
345
|
+
"asynckit": "^0.4.0",
|
|
346
|
+
"combined-stream": "^1.0.8",
|
|
347
|
+
"es-set-tostringtag": "^2.1.0",
|
|
348
|
+
"hasown": "^2.0.2",
|
|
349
|
+
"mime-types": "^2.1.12"
|
|
350
|
+
},
|
|
351
|
+
"engines": {
|
|
352
|
+
"node": ">= 6"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"node_modules/function-bind": {
|
|
356
|
+
"version": "1.1.2",
|
|
357
|
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
|
358
|
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
|
359
|
+
"dev": true,
|
|
360
|
+
"license": "MIT",
|
|
361
|
+
"funding": {
|
|
362
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
"node_modules/get-intrinsic": {
|
|
366
|
+
"version": "1.3.0",
|
|
367
|
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
|
368
|
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
|
369
|
+
"dev": true,
|
|
370
|
+
"license": "MIT",
|
|
371
|
+
"dependencies": {
|
|
372
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
373
|
+
"es-define-property": "^1.0.1",
|
|
374
|
+
"es-errors": "^1.3.0",
|
|
375
|
+
"es-object-atoms": "^1.1.1",
|
|
376
|
+
"function-bind": "^1.1.2",
|
|
377
|
+
"get-proto": "^1.0.1",
|
|
378
|
+
"gopd": "^1.2.0",
|
|
379
|
+
"has-symbols": "^1.1.0",
|
|
380
|
+
"hasown": "^2.0.2",
|
|
381
|
+
"math-intrinsics": "^1.1.0"
|
|
382
|
+
},
|
|
383
|
+
"engines": {
|
|
384
|
+
"node": ">= 0.4"
|
|
385
|
+
},
|
|
386
|
+
"funding": {
|
|
387
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
388
|
+
}
|
|
389
|
+
},
|
|
390
|
+
"node_modules/get-proto": {
|
|
391
|
+
"version": "1.0.1",
|
|
392
|
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
|
393
|
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
|
394
|
+
"dev": true,
|
|
395
|
+
"license": "MIT",
|
|
396
|
+
"dependencies": {
|
|
397
|
+
"dunder-proto": "^1.0.1",
|
|
398
|
+
"es-object-atoms": "^1.0.0"
|
|
399
|
+
},
|
|
400
|
+
"engines": {
|
|
401
|
+
"node": ">= 0.4"
|
|
402
|
+
}
|
|
403
|
+
},
|
|
404
|
+
"node_modules/gopd": {
|
|
405
|
+
"version": "1.2.0",
|
|
406
|
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
|
407
|
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
|
408
|
+
"dev": true,
|
|
409
|
+
"license": "MIT",
|
|
410
|
+
"engines": {
|
|
411
|
+
"node": ">= 0.4"
|
|
412
|
+
},
|
|
413
|
+
"funding": {
|
|
414
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
415
|
+
}
|
|
416
|
+
},
|
|
417
|
+
"node_modules/has-symbols": {
|
|
418
|
+
"version": "1.1.0",
|
|
419
|
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
|
420
|
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
|
421
|
+
"dev": true,
|
|
422
|
+
"license": "MIT",
|
|
423
|
+
"engines": {
|
|
424
|
+
"node": ">= 0.4"
|
|
425
|
+
},
|
|
426
|
+
"funding": {
|
|
427
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"node_modules/has-tostringtag": {
|
|
431
|
+
"version": "1.0.2",
|
|
432
|
+
"resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
|
|
433
|
+
"integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
|
|
434
|
+
"dev": true,
|
|
435
|
+
"license": "MIT",
|
|
436
|
+
"dependencies": {
|
|
437
|
+
"has-symbols": "^1.0.3"
|
|
438
|
+
},
|
|
439
|
+
"engines": {
|
|
440
|
+
"node": ">= 0.4"
|
|
441
|
+
},
|
|
442
|
+
"funding": {
|
|
443
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"node_modules/hasown": {
|
|
447
|
+
"version": "2.0.2",
|
|
448
|
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
|
449
|
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
|
450
|
+
"dev": true,
|
|
451
|
+
"license": "MIT",
|
|
452
|
+
"dependencies": {
|
|
453
|
+
"function-bind": "^1.1.2"
|
|
454
|
+
},
|
|
455
|
+
"engines": {
|
|
456
|
+
"node": ">= 0.4"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"node_modules/html-encoding-sniffer": {
|
|
460
|
+
"version": "4.0.0",
|
|
461
|
+
"resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz",
|
|
462
|
+
"integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==",
|
|
463
|
+
"dev": true,
|
|
464
|
+
"license": "MIT",
|
|
465
|
+
"dependencies": {
|
|
466
|
+
"whatwg-encoding": "^3.1.1"
|
|
467
|
+
},
|
|
468
|
+
"engines": {
|
|
469
|
+
"node": ">=18"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
"node_modules/http-proxy-agent": {
|
|
473
|
+
"version": "7.0.2",
|
|
474
|
+
"resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
|
|
475
|
+
"integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
|
|
476
|
+
"dev": true,
|
|
477
|
+
"license": "MIT",
|
|
478
|
+
"dependencies": {
|
|
479
|
+
"agent-base": "^7.1.0",
|
|
480
|
+
"debug": "^4.3.4"
|
|
481
|
+
},
|
|
482
|
+
"engines": {
|
|
483
|
+
"node": ">= 14"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"node_modules/https-proxy-agent": {
|
|
487
|
+
"version": "7.0.6",
|
|
488
|
+
"resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
|
|
489
|
+
"integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
|
|
490
|
+
"dev": true,
|
|
491
|
+
"license": "MIT",
|
|
492
|
+
"dependencies": {
|
|
493
|
+
"agent-base": "^7.1.2",
|
|
494
|
+
"debug": "4"
|
|
495
|
+
},
|
|
496
|
+
"engines": {
|
|
497
|
+
"node": ">= 14"
|
|
498
|
+
}
|
|
499
|
+
},
|
|
500
|
+
"node_modules/iconv-lite": {
|
|
501
|
+
"version": "0.6.3",
|
|
502
|
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
|
|
503
|
+
"integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==",
|
|
504
|
+
"dev": true,
|
|
505
|
+
"license": "MIT",
|
|
506
|
+
"dependencies": {
|
|
507
|
+
"safer-buffer": ">= 2.1.2 < 3.0.0"
|
|
508
|
+
},
|
|
509
|
+
"engines": {
|
|
510
|
+
"node": ">=0.10.0"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"node_modules/is-potential-custom-element-name": {
|
|
514
|
+
"version": "1.0.1",
|
|
515
|
+
"resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz",
|
|
516
|
+
"integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==",
|
|
517
|
+
"dev": true,
|
|
518
|
+
"license": "MIT"
|
|
519
|
+
},
|
|
520
|
+
"node_modules/jsdom": {
|
|
521
|
+
"version": "25.0.1",
|
|
522
|
+
"resolved": "https://registry.npmjs.org/jsdom/-/jsdom-25.0.1.tgz",
|
|
523
|
+
"integrity": "sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==",
|
|
524
|
+
"dev": true,
|
|
525
|
+
"license": "MIT",
|
|
526
|
+
"dependencies": {
|
|
527
|
+
"cssstyle": "^4.1.0",
|
|
528
|
+
"data-urls": "^5.0.0",
|
|
529
|
+
"decimal.js": "^10.4.3",
|
|
530
|
+
"form-data": "^4.0.0",
|
|
531
|
+
"html-encoding-sniffer": "^4.0.0",
|
|
532
|
+
"http-proxy-agent": "^7.0.2",
|
|
533
|
+
"https-proxy-agent": "^7.0.5",
|
|
534
|
+
"is-potential-custom-element-name": "^1.0.1",
|
|
535
|
+
"nwsapi": "^2.2.12",
|
|
536
|
+
"parse5": "^7.1.2",
|
|
537
|
+
"rrweb-cssom": "^0.7.1",
|
|
538
|
+
"saxes": "^6.0.0",
|
|
539
|
+
"symbol-tree": "^3.2.4",
|
|
540
|
+
"tough-cookie": "^5.0.0",
|
|
541
|
+
"w3c-xmlserializer": "^5.0.0",
|
|
542
|
+
"webidl-conversions": "^7.0.0",
|
|
543
|
+
"whatwg-encoding": "^3.1.1",
|
|
544
|
+
"whatwg-mimetype": "^4.0.0",
|
|
545
|
+
"whatwg-url": "^14.0.0",
|
|
546
|
+
"ws": "^8.18.0",
|
|
547
|
+
"xml-name-validator": "^5.0.0"
|
|
548
|
+
},
|
|
549
|
+
"engines": {
|
|
550
|
+
"node": ">=18"
|
|
551
|
+
},
|
|
552
|
+
"peerDependencies": {
|
|
553
|
+
"canvas": "^2.11.2"
|
|
554
|
+
},
|
|
555
|
+
"peerDependenciesMeta": {
|
|
556
|
+
"canvas": {
|
|
557
|
+
"optional": true
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
"node_modules/lru-cache": {
|
|
562
|
+
"version": "10.4.3",
|
|
563
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz",
|
|
564
|
+
"integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==",
|
|
565
|
+
"dev": true,
|
|
566
|
+
"license": "ISC"
|
|
567
|
+
},
|
|
568
|
+
"node_modules/math-intrinsics": {
|
|
569
|
+
"version": "1.1.0",
|
|
570
|
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
|
571
|
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
|
572
|
+
"dev": true,
|
|
573
|
+
"license": "MIT",
|
|
574
|
+
"engines": {
|
|
575
|
+
"node": ">= 0.4"
|
|
576
|
+
}
|
|
577
|
+
},
|
|
578
|
+
"node_modules/mime-db": {
|
|
579
|
+
"version": "1.52.0",
|
|
580
|
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
|
581
|
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
|
582
|
+
"dev": true,
|
|
583
|
+
"license": "MIT",
|
|
584
|
+
"engines": {
|
|
585
|
+
"node": ">= 0.6"
|
|
586
|
+
}
|
|
587
|
+
},
|
|
588
|
+
"node_modules/mime-types": {
|
|
589
|
+
"version": "2.1.35",
|
|
590
|
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
|
591
|
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
|
592
|
+
"dev": true,
|
|
593
|
+
"license": "MIT",
|
|
594
|
+
"dependencies": {
|
|
595
|
+
"mime-db": "1.52.0"
|
|
596
|
+
},
|
|
597
|
+
"engines": {
|
|
598
|
+
"node": ">= 0.6"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"node_modules/ms": {
|
|
602
|
+
"version": "2.1.3",
|
|
603
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
604
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
605
|
+
"dev": true,
|
|
606
|
+
"license": "MIT"
|
|
607
|
+
},
|
|
608
|
+
"node_modules/nwsapi": {
|
|
609
|
+
"version": "2.2.22",
|
|
610
|
+
"resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.22.tgz",
|
|
611
|
+
"integrity": "sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==",
|
|
612
|
+
"dev": true,
|
|
613
|
+
"license": "MIT"
|
|
614
|
+
},
|
|
615
|
+
"node_modules/parse5": {
|
|
616
|
+
"version": "7.3.0",
|
|
617
|
+
"resolved": "https://registry.npmjs.org/parse5/-/parse5-7.3.0.tgz",
|
|
618
|
+
"integrity": "sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==",
|
|
619
|
+
"dev": true,
|
|
620
|
+
"license": "MIT",
|
|
621
|
+
"dependencies": {
|
|
622
|
+
"entities": "^6.0.0"
|
|
623
|
+
},
|
|
624
|
+
"funding": {
|
|
625
|
+
"url": "https://github.com/inikulin/parse5?sponsor=1"
|
|
626
|
+
}
|
|
627
|
+
},
|
|
628
|
+
"node_modules/prettier": {
|
|
629
|
+
"version": "3.6.2",
|
|
630
|
+
"resolved": "https://registry.npmjs.org/prettier/-/prettier-3.6.2.tgz",
|
|
631
|
+
"integrity": "sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==",
|
|
632
|
+
"dev": true,
|
|
633
|
+
"license": "MIT",
|
|
634
|
+
"bin": {
|
|
635
|
+
"prettier": "bin/prettier.cjs"
|
|
636
|
+
},
|
|
637
|
+
"engines": {
|
|
638
|
+
"node": ">=14"
|
|
639
|
+
},
|
|
640
|
+
"funding": {
|
|
641
|
+
"url": "https://github.com/prettier/prettier?sponsor=1"
|
|
642
|
+
}
|
|
643
|
+
},
|
|
644
|
+
"node_modules/punycode": {
|
|
645
|
+
"version": "2.3.1",
|
|
646
|
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
|
647
|
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
|
648
|
+
"dev": true,
|
|
649
|
+
"license": "MIT",
|
|
650
|
+
"engines": {
|
|
651
|
+
"node": ">=6"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"node_modules/rrweb-cssom": {
|
|
655
|
+
"version": "0.7.1",
|
|
656
|
+
"resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz",
|
|
657
|
+
"integrity": "sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==",
|
|
658
|
+
"dev": true,
|
|
659
|
+
"license": "MIT"
|
|
660
|
+
},
|
|
661
|
+
"node_modules/safer-buffer": {
|
|
662
|
+
"version": "2.1.2",
|
|
663
|
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
|
664
|
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
|
665
|
+
"dev": true,
|
|
666
|
+
"license": "MIT"
|
|
667
|
+
},
|
|
668
|
+
"node_modules/saxes": {
|
|
669
|
+
"version": "6.0.0",
|
|
670
|
+
"resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz",
|
|
671
|
+
"integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==",
|
|
672
|
+
"dev": true,
|
|
673
|
+
"license": "ISC",
|
|
674
|
+
"dependencies": {
|
|
675
|
+
"xmlchars": "^2.2.0"
|
|
676
|
+
},
|
|
677
|
+
"engines": {
|
|
678
|
+
"node": ">=v12.22.7"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
"node_modules/symbol-tree": {
|
|
682
|
+
"version": "3.2.4",
|
|
683
|
+
"resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz",
|
|
684
|
+
"integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==",
|
|
685
|
+
"dev": true,
|
|
686
|
+
"license": "MIT"
|
|
687
|
+
},
|
|
688
|
+
"node_modules/tldts": {
|
|
689
|
+
"version": "6.1.86",
|
|
690
|
+
"resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz",
|
|
691
|
+
"integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==",
|
|
692
|
+
"dev": true,
|
|
693
|
+
"license": "MIT",
|
|
694
|
+
"dependencies": {
|
|
695
|
+
"tldts-core": "^6.1.86"
|
|
696
|
+
},
|
|
697
|
+
"bin": {
|
|
698
|
+
"tldts": "bin/cli.js"
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
"node_modules/tldts-core": {
|
|
702
|
+
"version": "6.1.86",
|
|
703
|
+
"resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz",
|
|
704
|
+
"integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==",
|
|
705
|
+
"dev": true,
|
|
706
|
+
"license": "MIT"
|
|
707
|
+
},
|
|
708
|
+
"node_modules/tough-cookie": {
|
|
709
|
+
"version": "5.1.2",
|
|
710
|
+
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz",
|
|
711
|
+
"integrity": "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==",
|
|
712
|
+
"dev": true,
|
|
713
|
+
"license": "BSD-3-Clause",
|
|
714
|
+
"dependencies": {
|
|
715
|
+
"tldts": "^6.1.32"
|
|
716
|
+
},
|
|
717
|
+
"engines": {
|
|
718
|
+
"node": ">=16"
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"node_modules/tr46": {
|
|
722
|
+
"version": "5.1.1",
|
|
723
|
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-5.1.1.tgz",
|
|
724
|
+
"integrity": "sha512-hdF5ZgjTqgAntKkklYw0R03MG2x/bSzTtkxmIRw/sTNV8YXsCJ1tfLAX23lhxhHJlEf3CRCOCGGWw3vI3GaSPw==",
|
|
725
|
+
"dev": true,
|
|
726
|
+
"license": "MIT",
|
|
727
|
+
"dependencies": {
|
|
728
|
+
"punycode": "^2.3.1"
|
|
729
|
+
},
|
|
730
|
+
"engines": {
|
|
731
|
+
"node": ">=18"
|
|
732
|
+
}
|
|
733
|
+
},
|
|
734
|
+
"node_modules/w3c-xmlserializer": {
|
|
735
|
+
"version": "5.0.0",
|
|
736
|
+
"resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz",
|
|
737
|
+
"integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==",
|
|
738
|
+
"dev": true,
|
|
739
|
+
"license": "MIT",
|
|
740
|
+
"dependencies": {
|
|
741
|
+
"xml-name-validator": "^5.0.0"
|
|
742
|
+
},
|
|
743
|
+
"engines": {
|
|
744
|
+
"node": ">=18"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
"node_modules/webidl-conversions": {
|
|
748
|
+
"version": "7.0.0",
|
|
749
|
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|
|
750
|
+
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
|
|
751
|
+
"dev": true,
|
|
752
|
+
"license": "BSD-2-Clause",
|
|
753
|
+
"engines": {
|
|
754
|
+
"node": ">=12"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"node_modules/whatwg-encoding": {
|
|
758
|
+
"version": "3.1.1",
|
|
759
|
+
"resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz",
|
|
760
|
+
"integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==",
|
|
761
|
+
"dev": true,
|
|
762
|
+
"license": "MIT",
|
|
763
|
+
"dependencies": {
|
|
764
|
+
"iconv-lite": "0.6.3"
|
|
765
|
+
},
|
|
766
|
+
"engines": {
|
|
767
|
+
"node": ">=18"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"node_modules/whatwg-mimetype": {
|
|
771
|
+
"version": "4.0.0",
|
|
772
|
+
"resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz",
|
|
773
|
+
"integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==",
|
|
774
|
+
"dev": true,
|
|
775
|
+
"license": "MIT",
|
|
776
|
+
"engines": {
|
|
777
|
+
"node": ">=18"
|
|
778
|
+
}
|
|
779
|
+
},
|
|
780
|
+
"node_modules/whatwg-url": {
|
|
781
|
+
"version": "14.2.0",
|
|
782
|
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz",
|
|
783
|
+
"integrity": "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==",
|
|
784
|
+
"dev": true,
|
|
785
|
+
"license": "MIT",
|
|
786
|
+
"dependencies": {
|
|
787
|
+
"tr46": "^5.1.0",
|
|
788
|
+
"webidl-conversions": "^7.0.0"
|
|
789
|
+
},
|
|
790
|
+
"engines": {
|
|
791
|
+
"node": ">=18"
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
"node_modules/ws": {
|
|
795
|
+
"version": "8.18.3",
|
|
796
|
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
|
797
|
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
|
798
|
+
"dev": true,
|
|
799
|
+
"license": "MIT",
|
|
800
|
+
"engines": {
|
|
801
|
+
"node": ">=10.0.0"
|
|
802
|
+
},
|
|
803
|
+
"peerDependencies": {
|
|
804
|
+
"bufferutil": "^4.0.1",
|
|
805
|
+
"utf-8-validate": ">=5.0.2"
|
|
806
|
+
},
|
|
807
|
+
"peerDependenciesMeta": {
|
|
808
|
+
"bufferutil": {
|
|
809
|
+
"optional": true
|
|
810
|
+
},
|
|
811
|
+
"utf-8-validate": {
|
|
812
|
+
"optional": true
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
},
|
|
816
|
+
"node_modules/xml-name-validator": {
|
|
817
|
+
"version": "5.0.0",
|
|
818
|
+
"resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz",
|
|
819
|
+
"integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==",
|
|
820
|
+
"dev": true,
|
|
821
|
+
"license": "Apache-2.0",
|
|
822
|
+
"engines": {
|
|
823
|
+
"node": ">=18"
|
|
824
|
+
}
|
|
825
|
+
},
|
|
826
|
+
"node_modules/xmlchars": {
|
|
827
|
+
"version": "2.2.0",
|
|
828
|
+
"resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz",
|
|
829
|
+
"integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==",
|
|
830
|
+
"dev": true,
|
|
831
|
+
"license": "MIT"
|
|
832
|
+
}
|
|
833
|
+
}
|
|
834
|
+
}
|