@heripo/research-radar 3.3.2 → 3.3.4
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 +16 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -7
- package/dist/index.js +16 -9
- package/dist/index.js.map +1 -1
- package/package.json +13 -16
package/dist/index.cjs
CHANGED
|
@@ -2612,15 +2612,16 @@ class CrawlingProvider {
|
|
|
2612
2612
|
|
|
2613
2613
|
/**
|
|
2614
2614
|
* Date service implementation
|
|
2615
|
-
* - Provides
|
|
2615
|
+
* - Provides newsletter publication date strings (ISO and localized display form)
|
|
2616
2616
|
* - Always returns Korea Standard Time (KST, Asia/Seoul) regardless of server timezone
|
|
2617
|
-
* - Accepts optional publishDate to override
|
|
2617
|
+
* - Accepts optional publishDate to override "today" (e.g., generating today's run for tomorrow's publication)
|
|
2618
2618
|
*/
|
|
2619
2619
|
class DateService {
|
|
2620
2620
|
targetDate;
|
|
2621
2621
|
/**
|
|
2622
|
-
* @param publishDate - Optional ISO date string (YYYY-MM-DD)
|
|
2623
|
-
*
|
|
2622
|
+
* @param publishDate - Optional ISO date string (YYYY-MM-DD) representing the newsletter
|
|
2623
|
+
* publication date. If omitted, the current wall-clock time (KST)
|
|
2624
|
+
* is used. Pass tomorrow's date when building the issue the night before.
|
|
2624
2625
|
* @throws {Error} If publishDate is not in YYYY-MM-DD format or is not a real calendar date.
|
|
2625
2626
|
*/
|
|
2626
2627
|
constructor(publishDate) {
|
|
@@ -2644,11 +2645,11 @@ class DateService {
|
|
|
2644
2645
|
}
|
|
2645
2646
|
}
|
|
2646
2647
|
/**
|
|
2647
|
-
* Get
|
|
2648
|
+
* Get the newsletter publication date in ISO format (YYYY-MM-DD).
|
|
2648
2649
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
2649
2650
|
* @returns ISO date string (e.g., "2024-10-15")
|
|
2650
2651
|
*/
|
|
2651
|
-
|
|
2652
|
+
getPublicationISODateString() {
|
|
2652
2653
|
// Use Intl.DateTimeFormat to get date in Korea timezone
|
|
2653
2654
|
// 'en-CA' locale returns YYYY-MM-DD format by default
|
|
2654
2655
|
const kstDate = this.targetDate.toLocaleDateString('en-CA', {
|
|
@@ -2656,12 +2657,15 @@ class DateService {
|
|
|
2656
2657
|
});
|
|
2657
2658
|
return kstDate;
|
|
2658
2659
|
}
|
|
2660
|
+
getCurrentISODateString() {
|
|
2661
|
+
return this.getPublicationISODateString();
|
|
2662
|
+
}
|
|
2659
2663
|
/**
|
|
2660
|
-
* Get
|
|
2664
|
+
* Get the newsletter publication date as a localized display string.
|
|
2661
2665
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
2662
2666
|
* @returns Korean formatted date (e.g., "2024년 10월 15일")
|
|
2663
2667
|
*/
|
|
2664
|
-
|
|
2668
|
+
getPublicationDisplayDateString() {
|
|
2665
2669
|
const formatter = new Intl.DateTimeFormat('ko-KR', {
|
|
2666
2670
|
timeZone: 'Asia/Seoul',
|
|
2667
2671
|
year: 'numeric',
|
|
@@ -2670,6 +2674,9 @@ class DateService {
|
|
|
2670
2674
|
});
|
|
2671
2675
|
return formatter.format(this.targetDate);
|
|
2672
2676
|
}
|
|
2677
|
+
getDisplayDateString() {
|
|
2678
|
+
return this.getPublicationDisplayDateString();
|
|
2679
|
+
}
|
|
2673
2680
|
}
|
|
2674
2681
|
|
|
2675
2682
|
/**
|
|
@@ -2766,7 +2773,7 @@ function createNewsletterGenerator(dependencies) {
|
|
|
2766
2773
|
const templateOptions = dependencies.templateOptions
|
|
2767
2774
|
? {
|
|
2768
2775
|
...dependencies.templateOptions,
|
|
2769
|
-
displayDate: dateService.
|
|
2776
|
+
displayDate: dateService.getPublicationDisplayDateString(),
|
|
2770
2777
|
}
|
|
2771
2778
|
: undefined;
|
|
2772
2779
|
let resolvedContentOptions = { ...contentOptions };
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -85,7 +85,7 @@ interface BaseNewsletterTemplateOptions {
|
|
|
85
85
|
heripolabNewsMarkdown?: string;
|
|
86
86
|
/**
|
|
87
87
|
* Display date string for the newsletter header (e.g. "2026년 2월 12일").
|
|
88
|
-
* Injected from DateService.
|
|
88
|
+
* Injected from DateService.getPublicationDisplayDateString() at generation time.
|
|
89
89
|
*/
|
|
90
90
|
displayDate?: string;
|
|
91
91
|
}
|
|
@@ -276,29 +276,32 @@ declare function generateWelcomeHTML(id: string, name: string, options?: Welcome
|
|
|
276
276
|
|
|
277
277
|
/**
|
|
278
278
|
* Date service implementation
|
|
279
|
-
* - Provides
|
|
279
|
+
* - Provides newsletter publication date strings (ISO and localized display form)
|
|
280
280
|
* - Always returns Korea Standard Time (KST, Asia/Seoul) regardless of server timezone
|
|
281
|
-
* - Accepts optional publishDate to override
|
|
281
|
+
* - Accepts optional publishDate to override "today" (e.g., generating today's run for tomorrow's publication)
|
|
282
282
|
*/
|
|
283
283
|
declare class DateService implements DateService$1 {
|
|
284
284
|
private readonly targetDate;
|
|
285
285
|
/**
|
|
286
|
-
* @param publishDate - Optional ISO date string (YYYY-MM-DD)
|
|
287
|
-
*
|
|
286
|
+
* @param publishDate - Optional ISO date string (YYYY-MM-DD) representing the newsletter
|
|
287
|
+
* publication date. If omitted, the current wall-clock time (KST)
|
|
288
|
+
* is used. Pass tomorrow's date when building the issue the night before.
|
|
288
289
|
* @throws {Error} If publishDate is not in YYYY-MM-DD format or is not a real calendar date.
|
|
289
290
|
*/
|
|
290
291
|
constructor(publishDate?: string);
|
|
291
292
|
/**
|
|
292
|
-
* Get
|
|
293
|
+
* Get the newsletter publication date in ISO format (YYYY-MM-DD).
|
|
293
294
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
294
295
|
* @returns ISO date string (e.g., "2024-10-15")
|
|
295
296
|
*/
|
|
297
|
+
getPublicationISODateString(): IsoDateString;
|
|
296
298
|
getCurrentISODateString(): IsoDateString;
|
|
297
299
|
/**
|
|
298
|
-
* Get
|
|
300
|
+
* Get the newsletter publication date as a localized display string.
|
|
299
301
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
300
302
|
* @returns Korean formatted date (e.g., "2024년 10월 15일")
|
|
301
303
|
*/
|
|
304
|
+
getPublicationDisplayDateString(): string;
|
|
302
305
|
getDisplayDateString(): string;
|
|
303
306
|
}
|
|
304
307
|
|
package/dist/index.js
CHANGED
|
@@ -2591,15 +2591,16 @@ class CrawlingProvider {
|
|
|
2591
2591
|
|
|
2592
2592
|
/**
|
|
2593
2593
|
* Date service implementation
|
|
2594
|
-
* - Provides
|
|
2594
|
+
* - Provides newsletter publication date strings (ISO and localized display form)
|
|
2595
2595
|
* - Always returns Korea Standard Time (KST, Asia/Seoul) regardless of server timezone
|
|
2596
|
-
* - Accepts optional publishDate to override
|
|
2596
|
+
* - Accepts optional publishDate to override "today" (e.g., generating today's run for tomorrow's publication)
|
|
2597
2597
|
*/
|
|
2598
2598
|
class DateService {
|
|
2599
2599
|
targetDate;
|
|
2600
2600
|
/**
|
|
2601
|
-
* @param publishDate - Optional ISO date string (YYYY-MM-DD)
|
|
2602
|
-
*
|
|
2601
|
+
* @param publishDate - Optional ISO date string (YYYY-MM-DD) representing the newsletter
|
|
2602
|
+
* publication date. If omitted, the current wall-clock time (KST)
|
|
2603
|
+
* is used. Pass tomorrow's date when building the issue the night before.
|
|
2603
2604
|
* @throws {Error} If publishDate is not in YYYY-MM-DD format or is not a real calendar date.
|
|
2604
2605
|
*/
|
|
2605
2606
|
constructor(publishDate) {
|
|
@@ -2623,11 +2624,11 @@ class DateService {
|
|
|
2623
2624
|
}
|
|
2624
2625
|
}
|
|
2625
2626
|
/**
|
|
2626
|
-
* Get
|
|
2627
|
+
* Get the newsletter publication date in ISO format (YYYY-MM-DD).
|
|
2627
2628
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
2628
2629
|
* @returns ISO date string (e.g., "2024-10-15")
|
|
2629
2630
|
*/
|
|
2630
|
-
|
|
2631
|
+
getPublicationISODateString() {
|
|
2631
2632
|
// Use Intl.DateTimeFormat to get date in Korea timezone
|
|
2632
2633
|
// 'en-CA' locale returns YYYY-MM-DD format by default
|
|
2633
2634
|
const kstDate = this.targetDate.toLocaleDateString('en-CA', {
|
|
@@ -2635,12 +2636,15 @@ class DateService {
|
|
|
2635
2636
|
});
|
|
2636
2637
|
return kstDate;
|
|
2637
2638
|
}
|
|
2639
|
+
getCurrentISODateString() {
|
|
2640
|
+
return this.getPublicationISODateString();
|
|
2641
|
+
}
|
|
2638
2642
|
/**
|
|
2639
|
-
* Get
|
|
2643
|
+
* Get the newsletter publication date as a localized display string.
|
|
2640
2644
|
* - Always returns date in Korea Standard Time (UTC+9)
|
|
2641
2645
|
* @returns Korean formatted date (e.g., "2024년 10월 15일")
|
|
2642
2646
|
*/
|
|
2643
|
-
|
|
2647
|
+
getPublicationDisplayDateString() {
|
|
2644
2648
|
const formatter = new Intl.DateTimeFormat('ko-KR', {
|
|
2645
2649
|
timeZone: 'Asia/Seoul',
|
|
2646
2650
|
year: 'numeric',
|
|
@@ -2649,6 +2653,9 @@ class DateService {
|
|
|
2649
2653
|
});
|
|
2650
2654
|
return formatter.format(this.targetDate);
|
|
2651
2655
|
}
|
|
2656
|
+
getDisplayDateString() {
|
|
2657
|
+
return this.getPublicationDisplayDateString();
|
|
2658
|
+
}
|
|
2652
2659
|
}
|
|
2653
2660
|
|
|
2654
2661
|
/**
|
|
@@ -2745,7 +2752,7 @@ function createNewsletterGenerator(dependencies) {
|
|
|
2745
2752
|
const templateOptions = dependencies.templateOptions
|
|
2746
2753
|
? {
|
|
2747
2754
|
...dependencies.templateOptions,
|
|
2748
|
-
displayDate: dateService.
|
|
2755
|
+
displayDate: dateService.getPublicationDisplayDateString(),
|
|
2749
2756
|
}
|
|
2750
2757
|
: undefined;
|
|
2751
2758
|
let resolvedContentOptions = { ...contentOptions };
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
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.4",
|
|
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,38 +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.71",
|
|
51
|
+
"@ai-sdk/google": "^3.0.64",
|
|
52
|
+
"@ai-sdk/openai": "^3.0.53",
|
|
53
53
|
"cheerio": "^1.2.0",
|
|
54
|
-
"dompurify": "^3.
|
|
54
|
+
"dompurify": "^3.4.0",
|
|
55
55
|
"jsdom": "^29.0.2",
|
|
56
56
|
"juice": "^11.1.1",
|
|
57
|
-
"safe-markdown2html": "^1.0.
|
|
57
|
+
"safe-markdown2html": "^1.0.3",
|
|
58
58
|
"turndown": "^7.2.4"
|
|
59
59
|
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"@llm-newsletter-kit/core": "~1.3.0"
|
|
62
|
-
},
|
|
63
60
|
"devDependencies": {
|
|
64
61
|
"@eslint/js": "^10.0.1",
|
|
65
|
-
"@llm-newsletter-kit/core": "^
|
|
62
|
+
"@llm-newsletter-kit/core": "^2.0.0",
|
|
66
63
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
67
64
|
"@types/express": "^5.0.6",
|
|
68
65
|
"@types/jsdom": "^28.0.1",
|
|
69
|
-
"@types/node": "^25.
|
|
66
|
+
"@types/node": "^25.6.0",
|
|
70
67
|
"@types/turndown": "^5.0.6",
|
|
71
|
-
"eslint": "^10.2.
|
|
68
|
+
"eslint": "^10.2.1",
|
|
72
69
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
73
70
|
"express": "^5.2.1",
|
|
74
|
-
"prettier": "^3.8.
|
|
71
|
+
"prettier": "^3.8.3",
|
|
75
72
|
"rimraf": "^6.1.3",
|
|
76
|
-
"rollup": "^4.60.
|
|
73
|
+
"rollup": "^4.60.2",
|
|
77
74
|
"rollup-plugin-dts": "^6.4.1",
|
|
78
75
|
"rollup-plugin-typescript2": "^0.37.0",
|
|
79
76
|
"tsx": "^4.21.0",
|
|
80
|
-
"typescript": "^6.0.
|
|
81
|
-
"typescript-eslint": "^8.58.
|
|
77
|
+
"typescript": "^6.0.3",
|
|
78
|
+
"typescript-eslint": "^8.58.2"
|
|
82
79
|
},
|
|
83
80
|
"repository": {
|
|
84
81
|
"type": "git",
|