pagerts 1.3.0 → 1.4.2
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 +13 -14
- package/package.json +3 -3
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
|
|
@@ -226,17 +226,16 @@ This project is licensed under the MIT License - see the [LICENSE](./LICENSE) fi
|
|
|
226
226
|
|
|
227
227
|
## Changelog
|
|
228
228
|
|
|
229
|
-
### v0.3.0
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
-
|
|
234
|
-
-
|
|
235
|
-
-
|
|
236
|
-
-
|
|
237
|
-
-
|
|
238
|
-
-
|
|
239
|
-
- 📚 Added security documentation
|
|
229
|
+
### v0.3.0 -> v1.4.1 summary
|
|
230
|
+
|
|
231
|
+
Key changes in this range:
|
|
232
|
+
|
|
233
|
+
- Security hardening and dependency-surface reduction (`863389a`).
|
|
234
|
+
- CI/security gate tightening and scan-noise cleanup (`da73bdb`, `46875e8`).
|
|
235
|
+
- Packaging/runtime interoperability fixes for CJS/ESM builds and publishes (`4054ab9`, `74d3f98`, `64b2a2f`, `e67acd6`).
|
|
236
|
+
- Regression fix for ignored script resources (`bc13b55`).
|
|
237
|
+
- Dependency tree refresh/stabilization (`1f8f86d`) and release bump to `v1.4.1` (`8846bec`).
|
|
238
|
+
- General code hardening and cleanup across extractors/fetching/printers, plus lockfile and build artifact maintenance in the same span.
|
|
240
239
|
|
|
241
240
|
### v0.2.0
|
|
242
241
|
|
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.2",
|
|
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": {
|