-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "web-clone",
"version": "1.3.1",
"description": "Recursively clone a website with url rewrite in controlled manner.",
"keywords": [
"cli",
"downloader",
"recursive",
"interactive",
"website",
"auto-scroll",
"lazy-loading",
"image",
"link",
"archive",
"clone"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/web-clone.git"
},
"homepage": "https://github.com/beenotung/web-clone#readme",
"bugs": {
"url": "https://github.com/beenotung/web-clone/issues"
},
"main": "dist/web-clone.js",
"types": "dist/web-clone.d.ts",
"bin": {
"web-clone": "cli.js"
},
"files": [
"dist"
],
"scripts": {
"test": "tsc --noEmit",
"build": "rm -rf dist && tsc -p ."
},
"dependencies": {
"dotenv": "^16.4.5",
"npm-init-helper": "^1.6.2",
"playwright": "^1.46.1",
"populate-env": "^2.3.0"
},
"devDependencies": {
"@types/node": "^20.16.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.4"
}
}