koonjs 0.6.3 → 0.7.0
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 +6 -6
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -109,8 +109,8 @@ Format: `{browser}{version}{-os}` — all parts except the browser name are opti
|
|
|
109
109
|
|
|
110
110
|
**Desktop browsers with OS variants:**
|
|
111
111
|
|
|
112
|
-
| Browser | Default (
|
|
113
|
-
|
|
112
|
+
| Browser | Default (macOS) | Windows | macOS | Linux |
|
|
113
|
+
|---------|----------------|---------|-------|-------|
|
|
114
114
|
| Chrome 145 | `chrome145` | `chrome145-windows` | `chrome145-macos` | `chrome145-linux` |
|
|
115
115
|
| Firefox 148 | `firefox148` | `firefox148-windows` | `firefox148-macos` | `firefox148-linux` |
|
|
116
116
|
| Edge 145 | `edge145` | `edge145-windows` | `edge145-macos` | — |
|
|
@@ -136,11 +136,11 @@ Format: `{browser}{version}{-os}` — all parts except the browser name are opti
|
|
|
136
136
|
|
|
137
137
|
| Shorthand | Resolves to |
|
|
138
138
|
|-----------|-------------|
|
|
139
|
-
| `chrome` | Chrome 145
|
|
140
|
-
| `firefox` | Firefox 148
|
|
139
|
+
| `chrome` | Chrome 145 macOS |
|
|
140
|
+
| `firefox` | Firefox 148 macOS |
|
|
141
141
|
| `safari` | Safari 18.3 macOS |
|
|
142
|
-
| `edge` | Edge 145
|
|
143
|
-
| `opera` | Opera 127
|
|
142
|
+
| `edge` | Edge 145 macOS |
|
|
143
|
+
| `opera` | Opera 127 macOS |
|
|
144
144
|
| `chrome-mobile` | Chrome Mobile 145 Android |
|
|
145
145
|
| `firefox-mobile` | Firefox Mobile 148 Android |
|
|
146
146
|
| `safari-mobile` | Safari Mobile 18.3 iOS |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "koonjs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "Browser-impersonating HTTP client — TLS, HTTP/2, HTTP/3 fingerprint spoofing. Passes Akamai & Cloudflare. 175 browser profiles.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"README.md"
|
|
23
23
|
],
|
|
24
24
|
"optionalDependencies": {
|
|
25
|
-
"@koonjs/win32-x64-msvc": "0.
|
|
26
|
-
"@koonjs/linux-x64-gnu": "0.
|
|
27
|
-
"@koonjs/darwin-arm64": "0.
|
|
28
|
-
"@koonjs/darwin-x64": "0.
|
|
25
|
+
"@koonjs/win32-x64-msvc": "0.7.0",
|
|
26
|
+
"@koonjs/linux-x64-gnu": "0.7.0",
|
|
27
|
+
"@koonjs/darwin-arm64": "0.7.0",
|
|
28
|
+
"@koonjs/darwin-x64": "0.7.0"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "cargo build --release -p koon-node && node -e \"require('fs').copyFileSync(require('path').resolve(__dirname,'../../target/release/koon_node.dll'), require('path').resolve(__dirname,'koon.win32-x64-msvc.node'))\"",
|