pagerts 1.3.0 โ 1.4.1
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/README.md +3 -3
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/akinevz2/pagerts/actions/workflows/ci.yml)
|
|
4
4
|
[](./SECURITY.md)
|
|
5
|
-
[](https://nodejs.org)
|
|
6
6
|
[](./LICENSE)
|
|
7
7
|
|
|
8
8
|
PagerTS is a secure, modern command-line utility that transforms URLs into structured JSON objects, extracting all navigable items and resources from webpages.
|
|
@@ -11,7 +11,7 @@ PagerTS is a secure, modern command-line utility that transforms URLs into struc
|
|
|
11
11
|
|
|
12
12
|
- ๐ **Security-First**: Built-in URL validation, rate limiting, and XSS protection
|
|
13
13
|
- ๐ **Modern TypeScript**: Strict type checking and modern ES2022 syntax
|
|
14
|
-
- โก **Fast**: Efficient parsing with
|
|
14
|
+
- โก **Fast**: Efficient parsing with LinkeDOM and concurrent request handling
|
|
15
15
|
- ๐งช **Well-Tested**: Comprehensive test coverage with Jest
|
|
16
16
|
- ๐ฆ **Easy to Use**: Simple CLI interface with sensible defaults
|
|
17
17
|
|
|
@@ -110,7 +110,7 @@ PagerTS takes security seriously. See [SECURITY.md](./SECURITY.md) for:
|
|
|
110
110
|
|
|
111
111
|
### Prerequisites
|
|
112
112
|
|
|
113
|
-
- Node.js >=
|
|
113
|
+
- Node.js >= 20.0.0
|
|
114
114
|
- npm >= 9.0.0
|
|
115
115
|
|
|
116
116
|
### Setup
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pagerts",
|
|
3
3
|
"description": "A tool for viewing external relations in a webpage",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "main.js",
|
|
7
7
|
"bin": {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"bin"
|
|
12
12
|
],
|
|
13
13
|
"engines": {
|
|
14
|
-
"node": ">=
|
|
14
|
+
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"test": "jest --coverage",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"homepage": "https://github.com/akinevz2/pagerts",
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@exodus/bytes": "^1.15.0",
|
|
47
|
-
"commander": "^
|
|
47
|
+
"commander": "^14.0.3",
|
|
48
48
|
"linkedom": "^0.18.9"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
@@ -62,4 +62,4 @@
|
|
|
62
62
|
"tsx": "^4.19.2",
|
|
63
63
|
"typescript": "^5.7.2"
|
|
64
64
|
}
|
|
65
|
-
}
|
|
65
|
+
}
|