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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![CI/CD Security Pipeline](https://github.com/akinevz2/pagerts/actions/workflows/ci.yml/badge.svg?branch=dev)](https://github.com/akinevz2/pagerts/actions/workflows/ci.yml)
4
4
  [![Security](https://img.shields.io/badge/security-maintained-green.svg)](./SECURITY.md)
5
- [![Node.js Version](https://img.shields.io/badge/node-%3E%3D18.0.0-brightgreen.svg)](https://nodejs.org)
5
+ [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org)
6
6
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](./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 JSDOM and concurrent request handling
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 >= 18.0.0
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.3.0",
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": ">=18.0.0"
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": "^12.1.0",
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
+ }