Dhalang 0.7.1 → 0.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 737f66adc02fc8014c5351e4b679a4d709931c43729fdba71c161e1b55a38551
4
- data.tar.gz: a4c5721dda854821f3e705654c550a7edd80f2e51a0200ed64245899faa1e571
3
+ metadata.gz: f8181be50a21d8c3b688b3ba8aa7f683f1bd6101acc36b6623b2948ffd0462ca
4
+ data.tar.gz: 7f04e3437befb446f2e2a45b90f46ffe17e97c56d570299ac1852c4d3fd2ed9a
5
5
  SHA512:
6
- metadata.gz: eca69779f1f79d082dc78dfacb059b4078583aa9adb3e71082f08cee9eab63eb787773be4b93633944f229c302a6c812cbc909ac89df6608e1018466eeb427df
7
- data.tar.gz: 3447cf8432a31e3f6e0e4d4edb9ed722c981bd16d659c542f1a82091cade222c65328b0764e73da540cb543188f413f4a82c57bcb851c7d500a2c76e1e7b7fe9
6
+ metadata.gz: 5a45db0cb7cbf08828e99ebd1a86fdc8e3dc8ac1fb01d10d3c521b2bbe38168fdd93e79271fe766504a1868d9cec124390ec3bf65cf513354ee6c974f0e50e37
7
+ data.tar.gz: 6f56ec00f075b58242fdf55c5d49ca2cb545fcf3b249942c1c4a0f1b102623ce7d633b7db25bb5f04450b25b599580fd6a81c502e434710e282cfcd6ed1af8f0
data/Gemfile.lock CHANGED
@@ -1,14 +1,14 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- Dhalang (0.7.0)
4
+ Dhalang (0.7.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- Ascii85 (1.1.0)
9
+ Ascii85 (1.1.1)
10
10
  afm (0.2.2)
11
- bigdecimal (3.1.7)
11
+ bigdecimal (3.1.8)
12
12
  diff-lcs (1.5.1)
13
13
  fastimage (2.2.7)
14
14
  hashery (2.1.2)
@@ -23,15 +23,15 @@ GEM
23
23
  rspec-core (~> 3.13.0)
24
24
  rspec-expectations (~> 3.13.0)
25
25
  rspec-mocks (~> 3.13.0)
26
- rspec-core (3.13.0)
26
+ rspec-core (3.13.2)
27
27
  rspec-support (~> 3.13.0)
28
- rspec-expectations (3.13.0)
28
+ rspec-expectations (3.13.3)
29
29
  diff-lcs (>= 1.2.0, < 2.0)
30
30
  rspec-support (~> 3.13.0)
31
- rspec-mocks (3.13.0)
31
+ rspec-mocks (3.13.2)
32
32
  diff-lcs (>= 1.2.0, < 2.0)
33
33
  rspec-support (~> 3.13.0)
34
- rspec-support (3.13.1)
34
+ rspec-support (3.13.2)
35
35
  ruby-rc4 (0.1.5)
36
36
  ttfunk (1.8.0)
37
37
  bigdecimal (~> 3.1)
data/README.md CHANGED
@@ -80,10 +80,9 @@ For example to only take a screenshot of the visible part of the page:
80
80
  Dhalang::Screenshot.get_from_url("https://www.google.com", :webp, {fullPage: false})
81
81
  ```
82
82
 
83
- A list of all possible PDF options that can be set, can be found at: https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#pagepdfoptions
84
-
85
- A list of all possible screenshot options that can be set, can be found at: https://github.com/puppeteer/puppeteer/blob/main/docs/api.md#pagescreenshotoptions
83
+ A list of all possible PDF options that can be set, can be found at: https://github.com/puppeteer/puppeteer/blob/main/docs/api/puppeteer.pdfoptions.md
86
84
 
85
+ A list of all possible screenshot options that can be set, can be found at: https://github.com/puppeteer/puppeteer/blob/main/docs/api/puppeteer.screenshotoptions.md
87
86
  > The default Puppeteer options contain the options `headerTemplate` and `footerTemplate`. Puppeteer expects these to be HTML strings. By default, the Dhalang
88
87
  > gem passes all options as arguments in a `node ...` shell command. In case the HTML strings are too long they might surpass the maximum
89
88
  > argument length of the host. For example, on Linux the `MAX_ARG_LEN` is 128kB. Therefore, you can also pass the headers and footers as file path using the
@@ -94,13 +93,14 @@ A list of all possible screenshot options that can be set, can be found at: http
94
93
  Below table lists more configuration parameters that can be set:
95
94
  | Key | Description | Default |
96
95
  |--------------------|-----------------------------------------------------------------------------------------|---------------------------------|
96
+ | isHeadless | Indicates if Chromium should be launched headless (useful for debugging) | true |
97
+ | slowMo | Amount of milliseconds to slow down Puppeteer operations (useful for debugging) | 0 |
97
98
  | browserWebsocketUrl | Websocket url of remote chromium browser to use | None |
98
99
  | navigationTimeout | Amount of milliseconds until Puppeteer while timeout when navigating to the given page | 10000 |
99
100
  | printToPDFTimeout | Amount of milliseconds until Puppeteer while timeout when calling Page.printToPDF | 0 (unlimited) |
100
101
  | navigationWaitForSelector | If set, Dhalang will wait for the specified selector to appear before creating the screenshot or PDF | None |
101
102
  | navigationWaitForXPath | If set, Dhalang will wait for the specified XPath to appear before creating the screenshot or PDF | None |
102
103
  | userAgent | User agent to send with the request | Default Puppeteer one |
103
- | isHeadless | Indicates if Chromium should be launched headless | true |
104
104
  | isAutoHeight | When set to true the height of generated PDFs will be based on the scrollHeight property of the document body | false |
105
105
  | viewPort | Custom viewport to use for the request | Default Puppeteer one |
106
106
  | httpAuthenticationCredentials | Custom HTTP authentication credentials to use for the request | None |
@@ -122,4 +122,4 @@ def example_controller_method
122
122
  binary_png = Dhalang::Screenshot.get_from_url("https://www.google.com", :png)
123
123
  send_data(binary_png, filename: 'screenshotofgoogle.png', type: 'image/png')
124
124
  end
125
- ```
125
+ ```
@@ -14,7 +14,8 @@ module Dhalang
14
14
  viewPort: '',
15
15
  httpAuthenticationCredentials: '',
16
16
  isAutoHeight: false,
17
- chromeOptions: []
17
+ chromeOptions: [],
18
+ slowMo: 0
18
19
  }.freeze
19
20
  DEFAULT_PDF_OPTIONS = {
20
21
  scale: 1,
@@ -6,9 +6,10 @@ module Dhalang
6
6
  #
7
7
  # @param [String] url The url to validate
8
8
  def self.validate(url)
9
- if (url !~ URI::DEFAULT_PARSER.regexp[:ABS_URI])
10
- raise URI::InvalidURIError, 'The given url was invalid, use format http://www.example.com'
11
- end
9
+ parsed = URI.parse(url) # Raise URI::InvalidURIError on invalid URLs
10
+ return true if parsed.absolute?
11
+
12
+ raise URI::InvalidURIError, 'The given url was invalid, use format http://www.example.com'
12
13
  end
13
14
  end
14
- end
15
+ end
@@ -1,3 +1,3 @@
1
1
  module Dhalang
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
3
3
  end
data/lib/js/dhalang.js CHANGED
@@ -24,6 +24,7 @@ const fs = require('fs')
24
24
  * @property {Object} viewPort - The view port to use.
25
25
  * @property {Object} httpAuthenticationCredentials - The credentials to use for HTTP authentication.
26
26
  * @property {boolean} isAutoHeight - The height is automatically set
27
+ * @property {number} slowMo - Amount of milliseconds to slow down Puppeteer operations.
27
28
  */
28
29
 
29
30
  /**
@@ -64,7 +65,8 @@ exports.launchPuppeteer = async function (configuration) {
64
65
  } else {
65
66
  return await puppeteer.launch({
66
67
  args: launchArgs,
67
- headless: configuration.userOptions.isHeadless
68
+ headless: configuration.userOptions.isHeadless,
69
+ slowMo: configuration.userOptions.slowMo
68
70
  });
69
71
  }
70
72
  }
@@ -156,7 +158,7 @@ exports.getConfiguredPdfOptions = async function (page, configuration) {
156
158
  exports.getNavigationParameters = function (configuration) {
157
159
  return {
158
160
  timeout: configuration.userOptions.navigationTimeout,
159
- waituntil: configuration.userOptions.navigationWaitUntil
161
+ waitUntil: configuration.userOptions.navigationWaitUntil
160
162
  }
161
163
  }
162
164
 
data/package-lock.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "dhalang",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "dhalang",
9
- "version": "0.7.1",
9
+ "version": "0.7.2",
10
10
  "license": "MIT",
11
11
  "dependencies": {
12
- "puppeteer": "^22.5.0"
12
+ "puppeteer": "23.10.4"
13
13
  }
14
14
  },
15
15
  "node_modules/@babel/code-frame": {
@@ -46,18 +46,19 @@
46
46
  }
47
47
  },
48
48
  "node_modules/@puppeteer/browsers": {
49
- "version": "2.2.0",
50
- "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.2.0.tgz",
51
- "integrity": "sha512-MC7LxpcBtdfTbzwARXIkqGZ1Osn3nnZJlm+i0+VqHl72t//Xwl9wICrXT8BwtgC6s1xJNHsxOpvzISUqe92+sw==",
49
+ "version": "2.6.1",
50
+ "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.6.1.tgz",
51
+ "integrity": "sha512-aBSREisdsGH890S2rQqK82qmQYU3uFpSH8wcZWHgHzl3LfzsxAKbLNiAG9mO8v1Y0UICBeClICxPJvyr0rcuxg==",
52
+ "license": "Apache-2.0",
52
53
  "dependencies": {
53
- "debug": "4.3.4",
54
- "extract-zip": "2.0.1",
55
- "progress": "2.0.3",
56
- "proxy-agent": "6.4.0",
57
- "semver": "7.6.0",
58
- "tar-fs": "3.0.5",
59
- "unbzip2-stream": "1.4.3",
60
- "yargs": "17.7.2"
54
+ "debug": "^4.4.0",
55
+ "extract-zip": "^2.0.1",
56
+ "progress": "^2.0.3",
57
+ "proxy-agent": "^6.5.0",
58
+ "semver": "^7.6.3",
59
+ "tar-fs": "^3.0.6",
60
+ "unbzip2-stream": "^1.4.3",
61
+ "yargs": "^17.7.2"
61
62
  },
62
63
  "bin": {
63
64
  "browsers": "lib/cjs/main-cli.js"
@@ -69,33 +70,34 @@
69
70
  "node_modules/@tootallnate/quickjs-emscripten": {
70
71
  "version": "0.23.0",
71
72
  "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz",
72
- "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA=="
73
+ "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==",
74
+ "license": "MIT"
73
75
  },
74
76
  "node_modules/@types/node": {
75
- "version": "20.11.28",
76
- "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz",
77
- "integrity": "sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==",
77
+ "version": "22.10.2",
78
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.10.2.tgz",
79
+ "integrity": "sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==",
80
+ "license": "MIT",
78
81
  "optional": true,
79
82
  "dependencies": {
80
- "undici-types": "~5.26.4"
83
+ "undici-types": "~6.20.0"
81
84
  }
82
85
  },
83
86
  "node_modules/@types/yauzl": {
84
87
  "version": "2.10.3",
85
88
  "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.10.3.tgz",
86
89
  "integrity": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==",
90
+ "license": "MIT",
87
91
  "optional": true,
88
92
  "dependencies": {
89
93
  "@types/node": "*"
90
94
  }
91
95
  },
92
96
  "node_modules/agent-base": {
93
- "version": "7.1.0",
94
- "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz",
95
- "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==",
96
- "dependencies": {
97
- "debug": "^4.3.4"
98
- },
97
+ "version": "7.1.3",
98
+ "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz",
99
+ "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==",
100
+ "license": "MIT",
99
101
  "engines": {
100
102
  "node": ">= 14"
101
103
  }
@@ -104,6 +106,7 @@
104
106
  "version": "5.0.1",
105
107
  "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
106
108
  "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
109
+ "license": "MIT",
107
110
  "engines": {
108
111
  "node": ">=8"
109
112
  }
@@ -128,6 +131,7 @@
128
131
  "version": "0.13.4",
129
132
  "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz",
130
133
  "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==",
134
+ "license": "MIT",
131
135
  "dependencies": {
132
136
  "tslib": "^2.0.1"
133
137
  },
@@ -136,43 +140,57 @@
136
140
  }
137
141
  },
138
142
  "node_modules/b4a": {
139
- "version": "1.6.6",
140
- "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.6.tgz",
141
- "integrity": "sha512-5Tk1HLk6b6ctmjIkAcU/Ujv/1WqiDl0F0JdRCR80VsOcUlHcu7pWeWRlOqQLHfDEsVx9YH/aif5AG4ehoCtTmg=="
143
+ "version": "1.6.7",
144
+ "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.7.tgz",
145
+ "integrity": "sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==",
146
+ "license": "Apache-2.0"
142
147
  },
143
148
  "node_modules/bare-events": {
144
- "version": "2.2.1",
145
- "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.2.1.tgz",
146
- "integrity": "sha512-9GYPpsPFvrWBkelIhOhTWtkeZxVxZOdb3VnFTCzlOo3OjvmTvzLoZFUT8kNFACx0vJej6QPney1Cf9BvzCNE/A==",
149
+ "version": "2.5.0",
150
+ "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.0.tgz",
151
+ "integrity": "sha512-/E8dDe9dsbLyh2qrZ64PEPadOQ0F4gbl1sUJOrmph7xOiIxfY8vwab/4bFLh4Y88/Hk/ujKcrQKc+ps0mv873A==",
152
+ "license": "Apache-2.0",
147
153
  "optional": true
148
154
  },
149
155
  "node_modules/bare-fs": {
150
- "version": "2.2.2",
151
- "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.2.2.tgz",
152
- "integrity": "sha512-X9IqgvyB0/VA5OZJyb5ZstoN62AzD7YxVGog13kkfYWYqJYcK0kcqLZ6TrmH5qr4/8//ejVcX4x/a0UvaogXmA==",
156
+ "version": "2.3.5",
157
+ "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-2.3.5.tgz",
158
+ "integrity": "sha512-SlE9eTxifPDJrT6YgemQ1WGFleevzwY+XAP1Xqgl56HtcrisC2CHCZ2tq6dBpcH2TnNxwUEUGhweo+lrQtYuiw==",
159
+ "license": "Apache-2.0",
153
160
  "optional": true,
154
161
  "dependencies": {
155
162
  "bare-events": "^2.0.0",
156
- "bare-os": "^2.0.0",
157
163
  "bare-path": "^2.0.0",
158
- "streamx": "^2.13.0"
164
+ "bare-stream": "^2.0.0"
159
165
  }
160
166
  },
161
167
  "node_modules/bare-os": {
162
- "version": "2.2.1",
163
- "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.2.1.tgz",
164
- "integrity": "sha512-OwPyHgBBMkhC29Hl3O4/YfxW9n7mdTr2+SsO29XBWKKJsbgj3mnorDB80r5TiCQgQstgE5ga1qNYrpes6NvX2w==",
168
+ "version": "2.4.4",
169
+ "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-2.4.4.tgz",
170
+ "integrity": "sha512-z3UiI2yi1mK0sXeRdc4O1Kk8aOa/e+FNWZcTiPB/dfTWyLypuE99LibgRaQki914Jq//yAWylcAt+mknKdixRQ==",
171
+ "license": "Apache-2.0",
165
172
  "optional": true
166
173
  },
167
174
  "node_modules/bare-path": {
168
- "version": "2.1.0",
169
- "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.0.tgz",
170
- "integrity": "sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==",
175
+ "version": "2.1.3",
176
+ "resolved": "https://registry.npmjs.org/bare-path/-/bare-path-2.1.3.tgz",
177
+ "integrity": "sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==",
178
+ "license": "Apache-2.0",
171
179
  "optional": true,
172
180
  "dependencies": {
173
181
  "bare-os": "^2.1.0"
174
182
  }
175
183
  },
184
+ "node_modules/bare-stream": {
185
+ "version": "2.6.1",
186
+ "resolved": "https://registry.npmjs.org/bare-stream/-/bare-stream-2.6.1.tgz",
187
+ "integrity": "sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==",
188
+ "license": "Apache-2.0",
189
+ "optional": true,
190
+ "dependencies": {
191
+ "streamx": "^2.21.0"
192
+ }
193
+ },
176
194
  "node_modules/base64-js": {
177
195
  "version": "1.5.1",
178
196
  "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
@@ -190,12 +208,14 @@
190
208
  "type": "consulting",
191
209
  "url": "https://feross.org/support"
192
210
  }
193
- ]
211
+ ],
212
+ "license": "MIT"
194
213
  },
195
214
  "node_modules/basic-ftp": {
196
215
  "version": "5.0.5",
197
216
  "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz",
198
217
  "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==",
218
+ "license": "MIT",
199
219
  "engines": {
200
220
  "node": ">=10.0.0"
201
221
  }
@@ -218,6 +238,7 @@
218
238
  "url": "https://feross.org/support"
219
239
  }
220
240
  ],
241
+ "license": "MIT",
221
242
  "dependencies": {
222
243
  "base64-js": "^1.3.1",
223
244
  "ieee754": "^1.1.13"
@@ -227,6 +248,7 @@
227
248
  "version": "0.2.13",
228
249
  "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz",
229
250
  "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==",
251
+ "license": "MIT",
230
252
  "engines": {
231
253
  "node": "*"
232
254
  }
@@ -253,13 +275,14 @@
253
275
  }
254
276
  },
255
277
  "node_modules/chromium-bidi": {
256
- "version": "0.5.13",
257
- "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.5.13.tgz",
258
- "integrity": "sha512-OHbYCetDxdW/xmlrafgOiLsIrw4Sp1BEeolbZ1UGJO5v/nekQOJBj/Kzyw6sqKcAVabUTo0GS3cTYgr6zIf00g==",
278
+ "version": "0.8.0",
279
+ "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-0.8.0.tgz",
280
+ "integrity": "sha512-uJydbGdTw0DEUjhoogGveneJVWX/9YuqkWePzMmkBYwtdAqo5d3J/ovNKFr+/2hWXYmYCr6it8mSSTIj6SS6Ug==",
281
+ "license": "Apache-2.0",
259
282
  "dependencies": {
260
283
  "mitt": "3.0.1",
261
284
  "urlpattern-polyfill": "10.0.0",
262
- "zod": "3.22.4"
285
+ "zod": "3.23.8"
263
286
  },
264
287
  "peerDependencies": {
265
288
  "devtools-protocol": "*"
@@ -269,6 +292,7 @@
269
292
  "version": "8.0.1",
270
293
  "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
271
294
  "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
295
+ "license": "ISC",
272
296
  "dependencies": {
273
297
  "string-width": "^4.2.0",
274
298
  "strip-ansi": "^6.0.1",
@@ -320,16 +344,18 @@
320
344
  "version": "6.0.2",
321
345
  "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz",
322
346
  "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==",
347
+ "license": "MIT",
323
348
  "engines": {
324
349
  "node": ">= 14"
325
350
  }
326
351
  },
327
352
  "node_modules/debug": {
328
- "version": "4.3.4",
329
- "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
330
- "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
353
+ "version": "4.4.0",
354
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
355
+ "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
356
+ "license": "MIT",
331
357
  "dependencies": {
332
- "ms": "2.1.2"
358
+ "ms": "^2.1.3"
333
359
  },
334
360
  "engines": {
335
361
  "node": ">=6.0"
@@ -344,6 +370,7 @@
344
370
  "version": "5.0.1",
345
371
  "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz",
346
372
  "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==",
373
+ "license": "MIT",
347
374
  "dependencies": {
348
375
  "ast-types": "^0.13.4",
349
376
  "escodegen": "^2.1.0",
@@ -354,19 +381,22 @@
354
381
  }
355
382
  },
356
383
  "node_modules/devtools-protocol": {
357
- "version": "0.0.1249869",
358
- "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1249869.tgz",
359
- "integrity": "sha512-Ctp4hInA0BEavlUoRy9mhGq0i+JSo/AwVyX2EFgZmV1kYB+Zq+EMBAn52QWu6FbRr10hRb6pBl420upbp4++vg=="
384
+ "version": "0.0.1367902",
385
+ "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1367902.tgz",
386
+ "integrity": "sha512-XxtPuC3PGakY6PD7dG66/o8KwJ/LkH2/EKe19Dcw58w53dv4/vSQEkn/SzuyhHE2q4zPgCkxQBxus3VV4ql+Pg==",
387
+ "license": "BSD-3-Clause"
360
388
  },
361
389
  "node_modules/emoji-regex": {
362
390
  "version": "8.0.0",
363
391
  "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
364
- "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
392
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
393
+ "license": "MIT"
365
394
  },
366
395
  "node_modules/end-of-stream": {
367
396
  "version": "1.4.4",
368
397
  "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz",
369
398
  "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==",
399
+ "license": "MIT",
370
400
  "dependencies": {
371
401
  "once": "^1.4.0"
372
402
  }
@@ -388,9 +418,10 @@
388
418
  }
389
419
  },
390
420
  "node_modules/escalade": {
391
- "version": "3.1.2",
392
- "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz",
393
- "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==",
421
+ "version": "3.2.0",
422
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
423
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
424
+ "license": "MIT",
394
425
  "engines": {
395
426
  "node": ">=6"
396
427
  }
@@ -407,6 +438,7 @@
407
438
  "version": "2.1.0",
408
439
  "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz",
409
440
  "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==",
441
+ "license": "BSD-2-Clause",
410
442
  "dependencies": {
411
443
  "esprima": "^4.0.1",
412
444
  "estraverse": "^5.2.0",
@@ -427,6 +459,7 @@
427
459
  "version": "4.0.1",
428
460
  "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
429
461
  "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
462
+ "license": "BSD-2-Clause",
430
463
  "bin": {
431
464
  "esparse": "bin/esparse.js",
432
465
  "esvalidate": "bin/esvalidate.js"
@@ -439,6 +472,7 @@
439
472
  "version": "5.3.0",
440
473
  "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
441
474
  "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
475
+ "license": "BSD-2-Clause",
442
476
  "engines": {
443
477
  "node": ">=4.0"
444
478
  }
@@ -447,6 +481,7 @@
447
481
  "version": "2.0.3",
448
482
  "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
449
483
  "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
484
+ "license": "BSD-2-Clause",
450
485
  "engines": {
451
486
  "node": ">=0.10.0"
452
487
  }
@@ -455,6 +490,7 @@
455
490
  "version": "2.0.1",
456
491
  "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz",
457
492
  "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==",
493
+ "license": "BSD-2-Clause",
458
494
  "dependencies": {
459
495
  "debug": "^4.1.1",
460
496
  "get-stream": "^5.1.0",
@@ -473,33 +509,23 @@
473
509
  "node_modules/fast-fifo": {
474
510
  "version": "1.3.2",
475
511
  "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz",
476
- "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ=="
512
+ "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==",
513
+ "license": "MIT"
477
514
  },
478
515
  "node_modules/fd-slicer": {
479
516
  "version": "1.1.0",
480
517
  "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz",
481
518
  "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==",
519
+ "license": "MIT",
482
520
  "dependencies": {
483
521
  "pend": "~1.2.0"
484
522
  }
485
523
  },
486
- "node_modules/fs-extra": {
487
- "version": "11.2.0",
488
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz",
489
- "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==",
490
- "dependencies": {
491
- "graceful-fs": "^4.2.0",
492
- "jsonfile": "^6.0.1",
493
- "universalify": "^2.0.0"
494
- },
495
- "engines": {
496
- "node": ">=14.14"
497
- }
498
- },
499
524
  "node_modules/get-caller-file": {
500
525
  "version": "2.0.5",
501
526
  "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
502
527
  "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
528
+ "license": "ISC",
503
529
  "engines": {
504
530
  "node": "6.* || 8.* || >= 10.*"
505
531
  }
@@ -508,6 +534,7 @@
508
534
  "version": "5.2.0",
509
535
  "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
510
536
  "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
537
+ "license": "MIT",
511
538
  "dependencies": {
512
539
  "pump": "^3.0.0"
513
540
  },
@@ -519,24 +546,19 @@
519
546
  }
520
547
  },
521
548
  "node_modules/get-uri": {
522
- "version": "6.0.3",
523
- "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz",
524
- "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==",
549
+ "version": "6.0.4",
550
+ "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz",
551
+ "integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==",
552
+ "license": "MIT",
525
553
  "dependencies": {
526
554
  "basic-ftp": "^5.0.2",
527
555
  "data-uri-to-buffer": "^6.0.2",
528
- "debug": "^4.3.4",
529
- "fs-extra": "^11.2.0"
556
+ "debug": "^4.3.4"
530
557
  },
531
558
  "engines": {
532
559
  "node": ">= 14"
533
560
  }
534
561
  },
535
- "node_modules/graceful-fs": {
536
- "version": "4.2.11",
537
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
538
- "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
539
- },
540
562
  "node_modules/has-flag": {
541
563
  "version": "3.0.0",
542
564
  "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
@@ -549,6 +571,7 @@
549
571
  "version": "7.0.2",
550
572
  "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz",
551
573
  "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==",
574
+ "license": "MIT",
552
575
  "dependencies": {
553
576
  "agent-base": "^7.1.0",
554
577
  "debug": "^4.3.4"
@@ -558,11 +581,12 @@
558
581
  }
559
582
  },
560
583
  "node_modules/https-proxy-agent": {
561
- "version": "7.0.4",
562
- "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz",
563
- "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==",
584
+ "version": "7.0.6",
585
+ "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz",
586
+ "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==",
587
+ "license": "MIT",
564
588
  "dependencies": {
565
- "agent-base": "^7.0.2",
589
+ "agent-base": "^7.1.2",
566
590
  "debug": "4"
567
591
  },
568
592
  "engines": {
@@ -586,7 +610,8 @@
586
610
  "type": "consulting",
587
611
  "url": "https://feross.org/support"
588
612
  }
589
- ]
613
+ ],
614
+ "license": "BSD-3-Clause"
590
615
  },
591
616
  "node_modules/import-fresh": {
592
617
  "version": "3.3.0",
@@ -607,6 +632,7 @@
607
632
  "version": "9.0.5",
608
633
  "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-9.0.5.tgz",
609
634
  "integrity": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==",
635
+ "license": "MIT",
610
636
  "dependencies": {
611
637
  "jsbn": "1.1.0",
612
638
  "sprintf-js": "^1.1.3"
@@ -624,6 +650,7 @@
624
650
  "version": "3.0.0",
625
651
  "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
626
652
  "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
653
+ "license": "MIT",
627
654
  "engines": {
628
655
  "node": ">=8"
629
656
  }
@@ -647,24 +674,14 @@
647
674
  "node_modules/jsbn": {
648
675
  "version": "1.1.0",
649
676
  "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-1.1.0.tgz",
650
- "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A=="
677
+ "integrity": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==",
678
+ "license": "MIT"
651
679
  },
652
680
  "node_modules/json-parse-even-better-errors": {
653
681
  "version": "2.3.1",
654
682
  "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz",
655
683
  "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="
656
684
  },
657
- "node_modules/jsonfile": {
658
- "version": "6.1.0",
659
- "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz",
660
- "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
661
- "dependencies": {
662
- "universalify": "^2.0.0"
663
- },
664
- "optionalDependencies": {
665
- "graceful-fs": "^4.1.6"
666
- }
667
- },
668
685
  "node_modules/lines-and-columns": {
669
686
  "version": "1.2.4",
670
687
  "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
@@ -674,6 +691,7 @@
674
691
  "version": "7.18.3",
675
692
  "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
676
693
  "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
694
+ "license": "ISC",
677
695
  "engines": {
678
696
  "node": ">=12"
679
697
  }
@@ -681,17 +699,20 @@
681
699
  "node_modules/mitt": {
682
700
  "version": "3.0.1",
683
701
  "resolved": "https://registry.npmjs.org/mitt/-/mitt-3.0.1.tgz",
684
- "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw=="
702
+ "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==",
703
+ "license": "MIT"
685
704
  },
686
705
  "node_modules/ms": {
687
- "version": "2.1.2",
688
- "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
689
- "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
706
+ "version": "2.1.3",
707
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
708
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
709
+ "license": "MIT"
690
710
  },
691
711
  "node_modules/netmask": {
692
712
  "version": "2.0.2",
693
713
  "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz",
694
714
  "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==",
715
+ "license": "MIT",
695
716
  "engines": {
696
717
  "node": ">= 0.4.0"
697
718
  }
@@ -700,23 +721,25 @@
700
721
  "version": "1.4.0",
701
722
  "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
702
723
  "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
724
+ "license": "ISC",
703
725
  "dependencies": {
704
726
  "wrappy": "1"
705
727
  }
706
728
  },
707
729
  "node_modules/pac-proxy-agent": {
708
- "version": "7.0.1",
709
- "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz",
710
- "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==",
730
+ "version": "7.1.0",
731
+ "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.1.0.tgz",
732
+ "integrity": "sha512-Z5FnLVVZSnX7WjBg0mhDtydeRZ1xMcATZThjySQUHqr+0ksP8kqaw23fNKkaaN/Z8gwLUs/W7xdl0I75eP2Xyw==",
733
+ "license": "MIT",
711
734
  "dependencies": {
712
735
  "@tootallnate/quickjs-emscripten": "^0.23.0",
713
- "agent-base": "^7.0.2",
736
+ "agent-base": "^7.1.2",
714
737
  "debug": "^4.3.4",
715
738
  "get-uri": "^6.0.1",
716
739
  "http-proxy-agent": "^7.0.0",
717
- "https-proxy-agent": "^7.0.2",
718
- "pac-resolver": "^7.0.0",
719
- "socks-proxy-agent": "^8.0.2"
740
+ "https-proxy-agent": "^7.0.6",
741
+ "pac-resolver": "^7.0.1",
742
+ "socks-proxy-agent": "^8.0.5"
720
743
  },
721
744
  "engines": {
722
745
  "node": ">= 14"
@@ -726,6 +749,7 @@
726
749
  "version": "7.0.1",
727
750
  "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz",
728
751
  "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==",
752
+ "license": "MIT",
729
753
  "dependencies": {
730
754
  "degenerator": "^5.0.0",
731
755
  "netmask": "^2.0.2"
@@ -765,29 +789,32 @@
765
789
  "node_modules/pend": {
766
790
  "version": "1.2.0",
767
791
  "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz",
768
- "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg=="
792
+ "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==",
793
+ "license": "MIT"
769
794
  },
770
795
  "node_modules/progress": {
771
796
  "version": "2.0.3",
772
797
  "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz",
773
798
  "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==",
799
+ "license": "MIT",
774
800
  "engines": {
775
801
  "node": ">=0.4.0"
776
802
  }
777
803
  },
778
804
  "node_modules/proxy-agent": {
779
- "version": "6.4.0",
780
- "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz",
781
- "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==",
805
+ "version": "6.5.0",
806
+ "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.5.0.tgz",
807
+ "integrity": "sha512-TmatMXdr2KlRiA2CyDu8GqR8EjahTG3aY3nXjdzFyoZbmB8hrBsTyMezhULIXKnC0jpfjlmiZ3+EaCzoInSu/A==",
808
+ "license": "MIT",
782
809
  "dependencies": {
783
- "agent-base": "^7.0.2",
810
+ "agent-base": "^7.1.2",
784
811
  "debug": "^4.3.4",
785
812
  "http-proxy-agent": "^7.0.1",
786
- "https-proxy-agent": "^7.0.3",
813
+ "https-proxy-agent": "^7.0.6",
787
814
  "lru-cache": "^7.14.1",
788
- "pac-proxy-agent": "^7.0.1",
815
+ "pac-proxy-agent": "^7.1.0",
789
816
  "proxy-from-env": "^1.1.0",
790
- "socks-proxy-agent": "^8.0.2"
817
+ "socks-proxy-agent": "^8.0.5"
791
818
  },
792
819
  "engines": {
793
820
  "node": ">= 14"
@@ -796,44 +823,52 @@
796
823
  "node_modules/proxy-from-env": {
797
824
  "version": "1.1.0",
798
825
  "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz",
799
- "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg=="
826
+ "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==",
827
+ "license": "MIT"
800
828
  },
801
829
  "node_modules/pump": {
802
- "version": "3.0.0",
803
- "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz",
804
- "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==",
830
+ "version": "3.0.2",
831
+ "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz",
832
+ "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==",
833
+ "license": "MIT",
805
834
  "dependencies": {
806
835
  "end-of-stream": "^1.1.0",
807
836
  "once": "^1.3.1"
808
837
  }
809
838
  },
810
839
  "node_modules/puppeteer": {
811
- "version": "22.5.0",
812
- "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-22.5.0.tgz",
813
- "integrity": "sha512-PNVflixb6w3FMhehYhLcaQHTCcNKVkjxekzyvWr0n0yBnhUYF0ZhiG4J1I14Mzui2oW8dGvUD8kbXj0GiN1pFg==",
840
+ "version": "23.10.4",
841
+ "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-23.10.4.tgz",
842
+ "integrity": "sha512-i0sYIAIjdO9MoRfFqbkoWFnQYZVmNp8msbztTgG46KbOdoYAv4f56MFzdFwtC0lyZHtkP+yl0H7tP0dNg3RQYA==",
814
843
  "hasInstallScript": true,
844
+ "license": "Apache-2.0",
815
845
  "dependencies": {
816
- "@puppeteer/browsers": "2.2.0",
817
- "cosmiconfig": "9.0.0",
818
- "puppeteer-core": "22.5.0"
846
+ "@puppeteer/browsers": "2.6.1",
847
+ "chromium-bidi": "0.8.0",
848
+ "cosmiconfig": "^9.0.0",
849
+ "devtools-protocol": "0.0.1367902",
850
+ "puppeteer-core": "23.10.4",
851
+ "typed-query-selector": "^2.12.0"
819
852
  },
820
853
  "bin": {
821
- "puppeteer": "lib/esm/puppeteer/node/cli.js"
854
+ "puppeteer": "lib/cjs/puppeteer/node/cli.js"
822
855
  },
823
856
  "engines": {
824
857
  "node": ">=18"
825
858
  }
826
859
  },
827
860
  "node_modules/puppeteer-core": {
828
- "version": "22.5.0",
829
- "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-22.5.0.tgz",
830
- "integrity": "sha512-bcfmM1nNSysjnES/ZZ1KdwFAFFGL3N76qRpisBb4WL7f4UAD4vPDxlhKZ1HJCDgMSWeYmeder4kftyp6lKqMYg==",
861
+ "version": "23.10.4",
862
+ "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-23.10.4.tgz",
863
+ "integrity": "sha512-pQAY7+IFAndWDkDodsQGguW1/ifV5OMlGXJDspwtK49Asb7poJZ/V5rXJxVSpq57bWrJasjQBZ1X27z1oWVq4Q==",
864
+ "license": "Apache-2.0",
831
865
  "dependencies": {
832
- "@puppeteer/browsers": "2.2.0",
833
- "chromium-bidi": "0.5.13",
834
- "debug": "4.3.4",
835
- "devtools-protocol": "0.0.1249869",
836
- "ws": "8.16.0"
866
+ "@puppeteer/browsers": "2.6.1",
867
+ "chromium-bidi": "0.8.0",
868
+ "debug": "^4.4.0",
869
+ "devtools-protocol": "0.0.1367902",
870
+ "typed-query-selector": "^2.12.0",
871
+ "ws": "^8.18.0"
837
872
  },
838
873
  "engines": {
839
874
  "node": ">=18"
@@ -842,12 +877,14 @@
842
877
  "node_modules/queue-tick": {
843
878
  "version": "1.0.1",
844
879
  "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz",
845
- "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag=="
880
+ "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==",
881
+ "license": "MIT"
846
882
  },
847
883
  "node_modules/require-directory": {
848
884
  "version": "2.1.1",
849
885
  "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
850
886
  "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
887
+ "license": "MIT",
851
888
  "engines": {
852
889
  "node": ">=0.10.0"
853
890
  }
@@ -861,12 +898,10 @@
861
898
  }
862
899
  },
863
900
  "node_modules/semver": {
864
- "version": "7.6.0",
865
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz",
866
- "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==",
867
- "dependencies": {
868
- "lru-cache": "^6.0.0"
869
- },
901
+ "version": "7.6.3",
902
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
903
+ "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
904
+ "license": "ISC",
870
905
  "bin": {
871
906
  "semver": "bin/semver.js"
872
907
  },
@@ -874,30 +909,21 @@
874
909
  "node": ">=10"
875
910
  }
876
911
  },
877
- "node_modules/semver/node_modules/lru-cache": {
878
- "version": "6.0.0",
879
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
880
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
881
- "dependencies": {
882
- "yallist": "^4.0.0"
883
- },
884
- "engines": {
885
- "node": ">=10"
886
- }
887
- },
888
912
  "node_modules/smart-buffer": {
889
913
  "version": "4.2.0",
890
914
  "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
891
915
  "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
916
+ "license": "MIT",
892
917
  "engines": {
893
918
  "node": ">= 6.0.0",
894
919
  "npm": ">= 3.0.0"
895
920
  }
896
921
  },
897
922
  "node_modules/socks": {
898
- "version": "2.8.1",
899
- "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.1.tgz",
900
- "integrity": "sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ==",
923
+ "version": "2.8.3",
924
+ "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.3.tgz",
925
+ "integrity": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==",
926
+ "license": "MIT",
901
927
  "dependencies": {
902
928
  "ip-address": "^9.0.5",
903
929
  "smart-buffer": "^4.2.0"
@@ -908,13 +934,14 @@
908
934
  }
909
935
  },
910
936
  "node_modules/socks-proxy-agent": {
911
- "version": "8.0.2",
912
- "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz",
913
- "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==",
937
+ "version": "8.0.5",
938
+ "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.5.tgz",
939
+ "integrity": "sha512-HehCEsotFqbPW9sJ8WVYB6UbmIMv7kUUORIF2Nncq4VQvBfNBLibW9YZR5dlYCSUhwcD628pRllm7n+E+YTzJw==",
940
+ "license": "MIT",
914
941
  "dependencies": {
915
- "agent-base": "^7.0.2",
942
+ "agent-base": "^7.1.2",
916
943
  "debug": "^4.3.4",
917
- "socks": "^2.7.1"
944
+ "socks": "^2.8.3"
918
945
  },
919
946
  "engines": {
920
947
  "node": ">= 14"
@@ -924,6 +951,7 @@
924
951
  "version": "0.6.1",
925
952
  "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
926
953
  "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
954
+ "license": "BSD-3-Clause",
927
955
  "optional": true,
928
956
  "engines": {
929
957
  "node": ">=0.10.0"
@@ -932,15 +960,18 @@
932
960
  "node_modules/sprintf-js": {
933
961
  "version": "1.1.3",
934
962
  "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz",
935
- "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="
963
+ "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==",
964
+ "license": "BSD-3-Clause"
936
965
  },
937
966
  "node_modules/streamx": {
938
- "version": "2.16.1",
939
- "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.16.1.tgz",
940
- "integrity": "sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==",
967
+ "version": "2.21.1",
968
+ "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.21.1.tgz",
969
+ "integrity": "sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==",
970
+ "license": "MIT",
941
971
  "dependencies": {
942
- "fast-fifo": "^1.1.0",
943
- "queue-tick": "^1.0.1"
972
+ "fast-fifo": "^1.3.2",
973
+ "queue-tick": "^1.0.1",
974
+ "text-decoder": "^1.1.0"
944
975
  },
945
976
  "optionalDependencies": {
946
977
  "bare-events": "^2.2.0"
@@ -950,6 +981,7 @@
950
981
  "version": "4.2.3",
951
982
  "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
952
983
  "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
984
+ "license": "MIT",
953
985
  "dependencies": {
954
986
  "emoji-regex": "^8.0.0",
955
987
  "is-fullwidth-code-point": "^3.0.0",
@@ -963,6 +995,7 @@
963
995
  "version": "6.0.1",
964
996
  "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
965
997
  "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
998
+ "license": "MIT",
966
999
  "dependencies": {
967
1000
  "ansi-regex": "^5.0.1"
968
1001
  },
@@ -982,9 +1015,10 @@
982
1015
  }
983
1016
  },
984
1017
  "node_modules/tar-fs": {
985
- "version": "3.0.5",
986
- "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.5.tgz",
987
- "integrity": "sha512-JOgGAmZyMgbqpLwct7ZV8VzkEB6pxXFBVErLtb+XCOqzc6w1xiWKI9GVd6bwk68EX7eJ4DWmfXVmq8K2ziZTGg==",
1018
+ "version": "3.0.6",
1019
+ "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.6.tgz",
1020
+ "integrity": "sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==",
1021
+ "license": "MIT",
988
1022
  "dependencies": {
989
1023
  "pump": "^3.0.0",
990
1024
  "tar-stream": "^3.1.5"
@@ -998,54 +1032,68 @@
998
1032
  "version": "3.1.7",
999
1033
  "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz",
1000
1034
  "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==",
1035
+ "license": "MIT",
1001
1036
  "dependencies": {
1002
1037
  "b4a": "^1.6.4",
1003
1038
  "fast-fifo": "^1.2.0",
1004
1039
  "streamx": "^2.15.0"
1005
1040
  }
1006
1041
  },
1042
+ "node_modules/text-decoder": {
1043
+ "version": "1.2.3",
1044
+ "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.3.tgz",
1045
+ "integrity": "sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==",
1046
+ "license": "Apache-2.0",
1047
+ "dependencies": {
1048
+ "b4a": "^1.6.4"
1049
+ }
1050
+ },
1007
1051
  "node_modules/through": {
1008
1052
  "version": "2.3.8",
1009
1053
  "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz",
1010
- "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg=="
1054
+ "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==",
1055
+ "license": "MIT"
1011
1056
  },
1012
1057
  "node_modules/tslib": {
1013
- "version": "2.6.2",
1014
- "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz",
1015
- "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q=="
1058
+ "version": "2.8.1",
1059
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
1060
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
1061
+ "license": "0BSD"
1062
+ },
1063
+ "node_modules/typed-query-selector": {
1064
+ "version": "2.12.0",
1065
+ "resolved": "https://registry.npmjs.org/typed-query-selector/-/typed-query-selector-2.12.0.tgz",
1066
+ "integrity": "sha512-SbklCd1F0EiZOyPiW192rrHZzZ5sBijB6xM+cpmrwDqObvdtunOHHIk9fCGsoK5JVIYXoyEp4iEdE3upFH3PAg==",
1067
+ "license": "MIT"
1016
1068
  },
1017
1069
  "node_modules/unbzip2-stream": {
1018
1070
  "version": "1.4.3",
1019
1071
  "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz",
1020
1072
  "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==",
1073
+ "license": "MIT",
1021
1074
  "dependencies": {
1022
1075
  "buffer": "^5.2.1",
1023
1076
  "through": "^2.3.8"
1024
1077
  }
1025
1078
  },
1026
1079
  "node_modules/undici-types": {
1027
- "version": "5.26.5",
1028
- "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz",
1029
- "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==",
1080
+ "version": "6.20.0",
1081
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
1082
+ "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
1083
+ "license": "MIT",
1030
1084
  "optional": true
1031
1085
  },
1032
- "node_modules/universalify": {
1033
- "version": "2.0.1",
1034
- "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
1035
- "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
1036
- "engines": {
1037
- "node": ">= 10.0.0"
1038
- }
1039
- },
1040
1086
  "node_modules/urlpattern-polyfill": {
1041
1087
  "version": "10.0.0",
1042
1088
  "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.0.0.tgz",
1043
- "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg=="
1089
+ "integrity": "sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==",
1090
+ "license": "MIT"
1044
1091
  },
1045
1092
  "node_modules/wrap-ansi": {
1046
1093
  "version": "7.0.0",
1047
1094
  "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
1048
1095
  "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
1096
+ "license": "MIT",
1049
1097
  "dependencies": {
1050
1098
  "ansi-styles": "^4.0.0",
1051
1099
  "string-width": "^4.1.0",
@@ -1062,6 +1110,7 @@
1062
1110
  "version": "4.3.0",
1063
1111
  "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1064
1112
  "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1113
+ "license": "MIT",
1065
1114
  "dependencies": {
1066
1115
  "color-convert": "^2.0.1"
1067
1116
  },
@@ -1076,6 +1125,7 @@
1076
1125
  "version": "2.0.1",
1077
1126
  "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1078
1127
  "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1128
+ "license": "MIT",
1079
1129
  "dependencies": {
1080
1130
  "color-name": "~1.1.4"
1081
1131
  },
@@ -1086,17 +1136,20 @@
1086
1136
  "node_modules/wrap-ansi/node_modules/color-name": {
1087
1137
  "version": "1.1.4",
1088
1138
  "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1089
- "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1139
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1140
+ "license": "MIT"
1090
1141
  },
1091
1142
  "node_modules/wrappy": {
1092
1143
  "version": "1.0.2",
1093
1144
  "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
1094
- "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
1145
+ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==",
1146
+ "license": "ISC"
1095
1147
  },
1096
1148
  "node_modules/ws": {
1097
- "version": "8.16.0",
1098
- "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz",
1099
- "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==",
1149
+ "version": "8.18.0",
1150
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz",
1151
+ "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==",
1152
+ "license": "MIT",
1100
1153
  "engines": {
1101
1154
  "node": ">=10.0.0"
1102
1155
  },
@@ -1117,19 +1170,16 @@
1117
1170
  "version": "5.0.8",
1118
1171
  "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
1119
1172
  "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
1173
+ "license": "ISC",
1120
1174
  "engines": {
1121
1175
  "node": ">=10"
1122
1176
  }
1123
1177
  },
1124
- "node_modules/yallist": {
1125
- "version": "4.0.0",
1126
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
1127
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
1128
- },
1129
1178
  "node_modules/yargs": {
1130
1179
  "version": "17.7.2",
1131
1180
  "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
1132
1181
  "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
1182
+ "license": "MIT",
1133
1183
  "dependencies": {
1134
1184
  "cliui": "^8.0.1",
1135
1185
  "escalade": "^3.1.1",
@@ -1147,6 +1197,7 @@
1147
1197
  "version": "21.1.1",
1148
1198
  "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
1149
1199
  "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
1200
+ "license": "ISC",
1150
1201
  "engines": {
1151
1202
  "node": ">=12"
1152
1203
  }
@@ -1155,15 +1206,17 @@
1155
1206
  "version": "2.10.0",
1156
1207
  "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz",
1157
1208
  "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==",
1209
+ "license": "MIT",
1158
1210
  "dependencies": {
1159
1211
  "buffer-crc32": "~0.2.3",
1160
1212
  "fd-slicer": "~1.1.0"
1161
1213
  }
1162
1214
  },
1163
1215
  "node_modules/zod": {
1164
- "version": "3.22.4",
1165
- "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz",
1166
- "integrity": "sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==",
1216
+ "version": "3.23.8",
1217
+ "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz",
1218
+ "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==",
1219
+ "license": "MIT",
1167
1220
  "funding": {
1168
1221
  "url": "https://github.com/sponsors/colinhacks"
1169
1222
  }
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhalang",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -20,6 +20,6 @@
20
20
  },
21
21
  "homepage": "https://github.com/NielsSteensma/Dhalang#readme",
22
22
  "dependencies": {
23
- "puppeteer": "^22.5.0"
23
+ "puppeteer": "23.10.4"
24
24
  }
25
25
  }
data/renovate.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:recommended", ":disableDependencyDashboard"
5
+ ],
6
+ "packageRules": [
7
+ {
8
+ "matchPackageNames": ["puppeteer"],
9
+ "commitMessageAction": "Test against",
10
+ "commitMessageTopic": "{{depName}}",
11
+ "commitMessageExtra": "{{#if isPinDigest}}{{{newDigestShort}}}{{else}}{{#if isMajor}}{{prettyNewMajor}}{{else}}{{#if isSingleVersion}}{{prettyNewVersion}}{{else}}{{#if newValue}}{{{newValue}}}{{else}}{{{newDigestShort}}}{{/if}}{{/if}}{{/if}}{{/if}}",
12
+ "automerge": true
13
+ }
14
+ ]
15
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Dhalang
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Niels Steensma
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-11 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -112,6 +112,7 @@ files:
112
112
  - lib/js/screenshot-generator.js
113
113
  - package-lock.json
114
114
  - package.json
115
+ - renovate.json
115
116
  homepage: https://github.com/NielsSteensma/Dhalang
116
117
  licenses:
117
118
  - MIT