-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.4 KB
/
package.json
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
{
"name": "whimsical-exporter",
"version": "1.0.1",
"description": "CLI tool to export Whimsical boards recursively as image files.",
"author": "Rodrigo Fernández (@FdezRomero)",
"license": "MIT",
"keywords": [
"whimsical",
"export",
"download",
"bulk",
"cli",
"tool"
],
"homepage": "https://github.com/FdezRomero/whimsical-exporter",
"repository": {
"type": "git",
"url": "https://github.com/FdezRomero/whimsical-exporter.git"
},
"bugs": {
"url": "https://github.com/FdezRomero/whimsical-exporter/issues"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc",
"watch": "tsc -w",
"release": "standard-version"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"inquirer": "^8.2.5",
"puppeteer": "^19.6.2",
"puppeteer-extra": "^3.3.4",
"puppeteer-extra-plugin-stealth": "^2.11.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.5",
"@types/node": "^18.11.18",
"@types/validator": "^13.7.11",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
}
}