-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 893 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 893 Bytes
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
{
"name": "@bottech/webshot",
"version": "0.1.2",
"description": "Takes a screenshot of a webpage including any pesky iframes with cross origin content.",
"author": "Jason Pickens <jasonpickensnz@gmail.com>",
"keywords": [
"screenshot"
],
"homepage": "https://github.com/BotTech/webshot",
"bugs": "https://github.com/BotTech/webshot/issues",
"license": "ISC",
"type:": "commonjs",
"main": "dist/src/index.js",
"bin": {
"webshot": "dist/src/index.js"
},
"exports": {
".": "./dist/src/index.js",
"./*": "./dist/src/*.js"
},
"scripts": {
"build": "node esbuild.config.mjs",
"start": "node .",
"clean": "rm -rf dist"
},
"dependencies": {
"commander": "^12.1.0",
"puppeteer": "^23.3.1"
},
"devDependencies": {
"esbuild": "^0.23.1",
"fast-glob": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}