utilitas 2001.1.152 → 2001.1.154
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/dist/utilitas.lite.mjs +1 -1
- package/dist/utilitas.lite.mjs.map +1 -1
- package/lib/manifest.mjs +12 -12
- package/lib/web.mjs +1 -1
- package/package.json +12 -12
package/lib/manifest.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const manifest = {
|
|
2
2
|
"name": "utilitas",
|
|
3
3
|
"description": "Just another common utility for JavaScript.",
|
|
4
|
-
"version": "2001.1.
|
|
4
|
+
"version": "2001.1.154",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/utilitas",
|
|
7
7
|
"main": "index.mjs",
|
|
@@ -26,12 +26,12 @@ const manifest = {
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@ffmpeg-installer/ffmpeg": "^1.1.0",
|
|
28
28
|
"@ffprobe-installer/ffprobe": "^2.1.2",
|
|
29
|
-
"@google-cloud/discoveryengine": "^2.
|
|
29
|
+
"@google-cloud/discoveryengine": "^2.7.0",
|
|
30
30
|
"@google-cloud/storage": "^7.19.0",
|
|
31
|
-
"@google/genai": "^
|
|
31
|
+
"@google/genai": "^2.3.0",
|
|
32
32
|
"@mozilla/readability": "github:mozilla/readability",
|
|
33
|
-
"@sentry/node": "^10.
|
|
34
|
-
"@sentry/profiling-node": "^10.
|
|
33
|
+
"@sentry/node": "^10.53.1",
|
|
34
|
+
"@sentry/profiling-node": "^10.53.1",
|
|
35
35
|
"acme-client": "^5.4.0",
|
|
36
36
|
"browserify-fs": "^1.0.0",
|
|
37
37
|
"buffer": "^6.0.3",
|
|
@@ -41,32 +41,32 @@ const manifest = {
|
|
|
41
41
|
"form-data": "^4.0.5",
|
|
42
42
|
"google-gax": "^5.0.6",
|
|
43
43
|
"ioredis": "^5.10.1",
|
|
44
|
-
"jsdom": "^29.1.
|
|
45
|
-
"lorem-ipsum": "^
|
|
46
|
-
"mailgun.js": "^13.0.
|
|
44
|
+
"jsdom": "^29.1.1",
|
|
45
|
+
"lorem-ipsum": "^3.0.0",
|
|
46
|
+
"mailgun.js": "^13.0.1",
|
|
47
47
|
"mailparser": "^3.9.8",
|
|
48
48
|
"mime": "^4.1.0",
|
|
49
49
|
"mysql2": "^3.22.3",
|
|
50
50
|
"node-mailjet": "^6.0.11",
|
|
51
51
|
"node-polyfill-webpack-plugin": "^4.1.0",
|
|
52
52
|
"office-text-extractor": "^4.0.0",
|
|
53
|
-
"openai": "^6.
|
|
53
|
+
"openai": "^6.37.0",
|
|
54
54
|
"pdf-lib": "^1.17.1",
|
|
55
55
|
"pdfjs-dist": "^5.7.284",
|
|
56
56
|
"pg": "^8.20.0",
|
|
57
57
|
"pgvector": "^0.2.1",
|
|
58
58
|
"ping": "^1.0.0",
|
|
59
59
|
"process": "^0.11.10",
|
|
60
|
-
"puppeteer": "^
|
|
60
|
+
"puppeteer": "^25.0.2",
|
|
61
61
|
"say": "^0.16.0",
|
|
62
62
|
"telegraf": "npm:@leask/telegraf@6.0.1",
|
|
63
63
|
"telesignsdk": "^5.0.0",
|
|
64
64
|
"tesseract.js": "^7.0.0",
|
|
65
|
-
"twilio": "^6.0.
|
|
65
|
+
"twilio": "^6.0.2",
|
|
66
66
|
"url": "github:Leask/node-url",
|
|
67
67
|
"webpack-cli": "^7.0.2",
|
|
68
68
|
"whisper-node": "^1.1.1",
|
|
69
|
-
"wrangler": "^4.
|
|
69
|
+
"wrangler": "^4.92.0",
|
|
70
70
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
|
|
71
71
|
"youtube-transcript": "^1.3.1"
|
|
72
72
|
}
|
package/lib/web.mjs
CHANGED
|
@@ -217,7 +217,7 @@ const search = async (query, options = {}) => {
|
|
|
217
217
|
ensureInt(options?.start || min, { min }),
|
|
218
218
|
];
|
|
219
219
|
var url = `https://s.jina.ai/?q=${encodeURIComponent(query)}`
|
|
220
|
-
+ `&page=${encodeURIComponent(start
|
|
220
|
+
+ `&page=${encodeURIComponent(start)}`
|
|
221
221
|
+ `&num=${encodeURIComponent(num)}`;
|
|
222
222
|
var resp = await get(url, {
|
|
223
223
|
encode: options?.aiFriendly ? 'TEXT' : _JSON,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "utilitas",
|
|
3
3
|
"description": "Just another common utility for JavaScript.",
|
|
4
|
-
"version": "2001.1.
|
|
4
|
+
"version": "2001.1.154",
|
|
5
5
|
"private": false,
|
|
6
6
|
"homepage": "https://github.com/Leask/utilitas",
|
|
7
7
|
"main": "index.mjs",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@ffmpeg-installer/ffmpeg": "^1.1.0",
|
|
39
39
|
"@ffprobe-installer/ffprobe": "^2.1.2",
|
|
40
|
-
"@google-cloud/discoveryengine": "^2.
|
|
40
|
+
"@google-cloud/discoveryengine": "^2.7.0",
|
|
41
41
|
"@google-cloud/storage": "^7.19.0",
|
|
42
|
-
"@google/genai": "^
|
|
42
|
+
"@google/genai": "^2.3.0",
|
|
43
43
|
"@mozilla/readability": "github:mozilla/readability",
|
|
44
|
-
"@sentry/node": "^10.
|
|
45
|
-
"@sentry/profiling-node": "^10.
|
|
44
|
+
"@sentry/node": "^10.53.1",
|
|
45
|
+
"@sentry/profiling-node": "^10.53.1",
|
|
46
46
|
"acme-client": "^5.4.0",
|
|
47
47
|
"browserify-fs": "^1.0.0",
|
|
48
48
|
"buffer": "^6.0.3",
|
|
@@ -52,32 +52,32 @@
|
|
|
52
52
|
"form-data": "^4.0.5",
|
|
53
53
|
"google-gax": "^5.0.6",
|
|
54
54
|
"ioredis": "^5.10.1",
|
|
55
|
-
"jsdom": "^29.1.
|
|
56
|
-
"lorem-ipsum": "^
|
|
57
|
-
"mailgun.js": "^13.0.
|
|
55
|
+
"jsdom": "^29.1.1",
|
|
56
|
+
"lorem-ipsum": "^3.0.0",
|
|
57
|
+
"mailgun.js": "^13.0.1",
|
|
58
58
|
"mailparser": "^3.9.8",
|
|
59
59
|
"mime": "^4.1.0",
|
|
60
60
|
"mysql2": "^3.22.3",
|
|
61
61
|
"node-mailjet": "^6.0.11",
|
|
62
62
|
"node-polyfill-webpack-plugin": "^4.1.0",
|
|
63
63
|
"office-text-extractor": "^4.0.0",
|
|
64
|
-
"openai": "^6.
|
|
64
|
+
"openai": "^6.37.0",
|
|
65
65
|
"pdf-lib": "^1.17.1",
|
|
66
66
|
"pdfjs-dist": "^5.7.284",
|
|
67
67
|
"pg": "^8.20.0",
|
|
68
68
|
"pgvector": "^0.2.1",
|
|
69
69
|
"ping": "^1.0.0",
|
|
70
70
|
"process": "^0.11.10",
|
|
71
|
-
"puppeteer": "^
|
|
71
|
+
"puppeteer": "^25.0.2",
|
|
72
72
|
"say": "^0.16.0",
|
|
73
73
|
"telegraf": "npm:@leask/telegraf@6.0.1",
|
|
74
74
|
"telesignsdk": "^5.0.0",
|
|
75
75
|
"tesseract.js": "^7.0.0",
|
|
76
|
-
"twilio": "^6.0.
|
|
76
|
+
"twilio": "^6.0.2",
|
|
77
77
|
"url": "github:Leask/node-url",
|
|
78
78
|
"webpack-cli": "^7.0.2",
|
|
79
79
|
"whisper-node": "^1.1.1",
|
|
80
|
-
"wrangler": "^4.
|
|
80
|
+
"wrangler": "^4.92.0",
|
|
81
81
|
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
|
|
82
82
|
"youtube-transcript": "^1.3.1"
|
|
83
83
|
}
|