-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.82 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "urlbox",
"version": "2.2.0",
"description": "Generate website screenshots, PDFs and other renders from URLs or HTML using the urlbox website screenshot API",
"scripts": {
"test": "vitest --run",
"test:watch": "vitest",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"prepublishOnly": "npm run build && npm run test"
},
"types": "dist/mjs/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/urlbox/urlbox-node.git"
},
"keywords": [
"website screenshot",
"website screenshot api",
"website screenshots",
"website snapshot",
"screenshot api",
"screenshot service",
"puppeteer screenshot",
"playwright screenshot",
"screenshot as a service",
"chrome screenshot",
"headless chrome",
"html to pdf",
"screenshots",
"snapshot",
"urlbox",
"urlbox.io",
"urlbox.com",
"phantom",
"phantomjs",
"screenshot",
"website",
"retina",
"headless",
"chrome",
"blink",
"url capture",
"url render",
"render website",
"capture website",
"page capture",
"webkit",
"webkit2png",
"selenium screenshot",
"url2png",
"fullpage screenshot",
"fullheight"
],
"author": "Chris Roebuck",
"license": "ISC",
"bugs": {
"url": "https://github.com/urlbox/urlbox-node/issues"
},
"homepage": "https://github.com/urlbox/urlbox-node#readme",
"dependencies": {
"qs": "^6.12.1"
},
"devDependencies": {
"@types/node": "^20.12.12",
"@types/qs": "^6.9.15",
"@vitest/ui": "^1.6.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}