wayback-dl 1.1.1 → 1.1.3
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/bin/wayback-dl.js +0 -0
- package/package.json +9 -10
package/bin/wayback-dl.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wayback-dl",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Download archived websites from the Internet Archive Wayback Machine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -12,13 +12,6 @@
|
|
|
12
12
|
"dist",
|
|
13
13
|
"bin"
|
|
14
14
|
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsc",
|
|
17
|
-
"prepare": "pnpm run build",
|
|
18
|
-
"test": "node --import tsx --test test/*.test.ts",
|
|
19
|
-
"start": "node --import tsx bin/wayback-dl.js",
|
|
20
|
-
"dev": "node --import tsx src/cli.ts"
|
|
21
|
-
},
|
|
22
15
|
"keywords": [
|
|
23
16
|
"wayback-machine",
|
|
24
17
|
"internet-archive",
|
|
@@ -33,7 +26,7 @@
|
|
|
33
26
|
"url": "https://github.com/tdlm/wayback-machine-downloader.git"
|
|
34
27
|
},
|
|
35
28
|
"engines": {
|
|
36
|
-
"node": ">=
|
|
29
|
+
"node": ">=20.0.0"
|
|
37
30
|
},
|
|
38
31
|
"dependencies": {
|
|
39
32
|
"chalk": "^5.3.0",
|
|
@@ -46,5 +39,11 @@
|
|
|
46
39
|
"@types/node": "^22.10.1",
|
|
47
40
|
"tsx": "^4.19.2",
|
|
48
41
|
"typescript": "^5.7.2"
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsc",
|
|
45
|
+
"test": "node --import tsx --test test/*.test.ts",
|
|
46
|
+
"start": "node --import tsx bin/wayback-dl.js",
|
|
47
|
+
"dev": "node --import tsx src/cli.ts"
|
|
49
48
|
}
|
|
50
|
-
}
|
|
49
|
+
}
|