@heripo/research-radar 3.3.4 → 3.3.6
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +11 -11
package/dist/index.cjs
CHANGED
|
@@ -509,7 +509,7 @@ const parseKaahList = (html) => {
|
|
|
509
509
|
const detailUrl = fullUrl.href;
|
|
510
510
|
const uniqId = fullUrl.pathname.split('/').pop() ?? undefined;
|
|
511
511
|
const title = titleElement.text()?.trim() ?? '';
|
|
512
|
-
const date = getDate(columns.eq(
|
|
512
|
+
const date = getDate(columns.eq(columns.length - 2).text().trim());
|
|
513
513
|
posts.push({
|
|
514
514
|
uniqId,
|
|
515
515
|
title,
|
package/dist/index.js
CHANGED
|
@@ -488,7 +488,7 @@ const parseKaahList = (html) => {
|
|
|
488
488
|
const detailUrl = fullUrl.href;
|
|
489
489
|
const uniqId = fullUrl.pathname.split('/').pop() ?? undefined;
|
|
490
490
|
const title = titleElement.text()?.trim() ?? '';
|
|
491
|
-
const date = getDate(columns.eq(
|
|
491
|
+
const date = getDate(columns.eq(columns.length - 2).text().trim());
|
|
492
492
|
posts.push({
|
|
493
493
|
uniqId,
|
|
494
494
|
title,
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@heripo/research-radar",
|
|
3
3
|
"private": false,
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "3.3.
|
|
5
|
+
"version": "3.3.6",
|
|
6
6
|
"description": "AI-driven intelligence for Korean cultural heritage. This package serves as both a ready-to-use newsletter service and a practical implementation example for the LLM-Newsletter-Kit.",
|
|
7
7
|
"main": "dist/index.cjs",
|
|
8
8
|
"module": "dist/index.js",
|
|
@@ -47,35 +47,35 @@
|
|
|
47
47
|
"author": "kimhongyeon",
|
|
48
48
|
"license": "Apache-2.0",
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@ai-sdk/anthropic": "^3.0.
|
|
51
|
-
"@ai-sdk/google": "^3.0.
|
|
52
|
-
"@ai-sdk/openai": "^3.0.
|
|
50
|
+
"@ai-sdk/anthropic": "^3.0.76",
|
|
51
|
+
"@ai-sdk/google": "^3.0.71",
|
|
52
|
+
"@ai-sdk/openai": "^3.0.63",
|
|
53
53
|
"cheerio": "^1.2.0",
|
|
54
|
-
"dompurify": "^3.4.
|
|
55
|
-
"jsdom": "^29.
|
|
54
|
+
"dompurify": "^3.4.2",
|
|
55
|
+
"jsdom": "^29.1.1",
|
|
56
56
|
"juice": "^11.1.1",
|
|
57
57
|
"safe-markdown2html": "^1.0.3",
|
|
58
58
|
"turndown": "^7.2.4"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
61
|
"@eslint/js": "^10.0.1",
|
|
62
|
-
"@llm-newsletter-kit/core": "^2.0.
|
|
62
|
+
"@llm-newsletter-kit/core": "^2.0.1",
|
|
63
63
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
64
64
|
"@types/express": "^5.0.6",
|
|
65
65
|
"@types/jsdom": "^28.0.1",
|
|
66
|
-
"@types/node": "^25.6.
|
|
66
|
+
"@types/node": "^25.6.2",
|
|
67
67
|
"@types/turndown": "^5.0.6",
|
|
68
|
-
"eslint": "^10.
|
|
68
|
+
"eslint": "^10.3.0",
|
|
69
69
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
70
70
|
"express": "^5.2.1",
|
|
71
71
|
"prettier": "^3.8.3",
|
|
72
72
|
"rimraf": "^6.1.3",
|
|
73
|
-
"rollup": "^4.60.
|
|
73
|
+
"rollup": "^4.60.3",
|
|
74
74
|
"rollup-plugin-dts": "^6.4.1",
|
|
75
75
|
"rollup-plugin-typescript2": "^0.37.0",
|
|
76
76
|
"tsx": "^4.21.0",
|
|
77
77
|
"typescript": "^6.0.3",
|
|
78
|
-
"typescript-eslint": "^8.
|
|
78
|
+
"typescript-eslint": "^8.59.2"
|
|
79
79
|
},
|
|
80
80
|
"repository": {
|
|
81
81
|
"type": "git",
|