@browserless/screenshot 13.9.23 → 13.10.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@browserless/screenshot",
3
3
  "description": "Capture high-quality screenshots of websites with overlay support, device emulation, and automated image optimization.",
4
4
  "homepage": "https://browserless.js.org/#/?id=screenshoturl-options",
5
- "version": "13.9.23",
5
+ "version": "13.10.1",
6
6
  "main": "src/index.js",
7
7
  "author": {
8
8
  "email": "hello@microlink.io",
@@ -33,12 +33,12 @@
33
33
  ],
34
34
  "dependencies": {
35
35
  "@browserless/errors": "13.9.23",
36
- "@browserless/goto": "13.9.22",
36
+ "@browserless/goto": "13.10.1",
37
37
  "@kikobeats/content-type": "~1.0.4",
38
+ "@kikobeats/got": "~11.8.8",
38
39
  "@kikobeats/time-span": "~1.0.13",
39
40
  "automad-prism-themes": "~0.3.8",
40
41
  "debug-logfmt": "~1.4.15",
41
- "got": "~11.8.6",
42
42
  "is-html-content": "~1.0.0",
43
43
  "is-url-http": "~2.3.13",
44
44
  "lodash": "~4.18.1",
@@ -70,5 +70,5 @@
70
70
  "timeout": "2m",
71
71
  "workerThreads": false
72
72
  },
73
- "gitHead": "e0aece5b808c3b626b8c0b81158714282d07a773"
73
+ "gitHead": "1b6ea5387978d49eba0ed4d8643e2f5ff5a88875"
74
74
  }
@@ -4,7 +4,7 @@ const svgGradient = require('svg-gradient')
4
4
  const isHttpUrl = require('is-url-http')
5
5
  const sharp = require('sharp')
6
6
  const path = require('path')
7
- const got = require('got')
7
+ const got = require('@kikobeats/got')
8
8
 
9
9
  const toPx = str => `${str}px`
10
10