@heripo/research-radar 3.3.0 → 3.3.2
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 +51 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +51 -2
- package/dist/index.js.map +1 -1
- package/package.json +13 -13
package/dist/index.cjs
CHANGED
|
@@ -1029,13 +1029,14 @@ const extractNttId = (html) => {
|
|
|
1029
1029
|
* @param listDataPath - API path segment (e.g., "/news/notice" or "/resources/academiccultural")
|
|
1030
1030
|
* @param infoPathPrefix - Detail page path prefix (e.g., "/news/notice/info")
|
|
1031
1031
|
*/
|
|
1032
|
-
const parseSeamuseList = async (_html, listDataPath, infoPathPrefix, customFetch) => {
|
|
1032
|
+
const parseSeamuseList = async (_html, listDataPath, infoPathPrefix, customFetch, searchCategory) => {
|
|
1033
|
+
const body = searchCategory ? `searchCategory=${searchCategory}` : '';
|
|
1033
1034
|
const response = await (customFetch ?? fetch)(`${BASE_URL$1}${listDataPath}/listData/1`, {
|
|
1034
1035
|
method: 'POST',
|
|
1035
1036
|
headers: {
|
|
1036
1037
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
1037
1038
|
},
|
|
1038
|
-
body
|
|
1039
|
+
body,
|
|
1039
1040
|
});
|
|
1040
1041
|
const data = await response.json();
|
|
1041
1042
|
const posts = [];
|
|
@@ -1315,6 +1316,34 @@ function createCrawlingTargetGroups(customFetch) {
|
|
|
1315
1316
|
parseList: (html) => parseSeamuseList(html, '/resources/academiccultural', '/resources/academiccultural/info', customFetch),
|
|
1316
1317
|
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academiccultural', customFetch),
|
|
1317
1318
|
},
|
|
1319
|
+
{
|
|
1320
|
+
id: '국립해양유산연구소_학술보고서_수중유산조사',
|
|
1321
|
+
name: '국립해양유산연구소 학술보고서 수중유산 조사',
|
|
1322
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1',
|
|
1323
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT001'),
|
|
1324
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
id: '국립해양유산연구소_학술보고서_수중유산보존',
|
|
1328
|
+
name: '국립해양유산연구소 학술보고서 수중유산 보존',
|
|
1329
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab2',
|
|
1330
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT002'),
|
|
1331
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
id: '국립해양유산연구소_학술보고서_전통선박',
|
|
1335
|
+
name: '국립해양유산연구소 학술보고서 전통 선박',
|
|
1336
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab3',
|
|
1337
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT003'),
|
|
1338
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1339
|
+
},
|
|
1340
|
+
{
|
|
1341
|
+
id: '국립해양유산연구소_학술보고서_해양문화역사',
|
|
1342
|
+
name: '국립해양유산연구소 학술보고서 해양문화역사',
|
|
1343
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab4',
|
|
1344
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT004'),
|
|
1345
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1346
|
+
},
|
|
1318
1347
|
{
|
|
1319
1348
|
id: '국립고궁박물관_공지사항',
|
|
1320
1349
|
name: '국립고궁박물관 공지사항',
|
|
@@ -1820,6 +1849,26 @@ class AnalysisProvider {
|
|
|
1820
1849
|
targetUrl: 'https://www.kaah.kr/ipcopen',
|
|
1821
1850
|
minScore: 6,
|
|
1822
1851
|
},
|
|
1852
|
+
{
|
|
1853
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academiccultural/list/1',
|
|
1854
|
+
minScore: 6,
|
|
1855
|
+
},
|
|
1856
|
+
{
|
|
1857
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1',
|
|
1858
|
+
minScore: 6,
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab2',
|
|
1862
|
+
minScore: 6,
|
|
1863
|
+
},
|
|
1864
|
+
{
|
|
1865
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab3',
|
|
1866
|
+
minScore: 6,
|
|
1867
|
+
},
|
|
1868
|
+
{
|
|
1869
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab4',
|
|
1870
|
+
minScore: 6,
|
|
1871
|
+
},
|
|
1823
1872
|
// Excavation report news: minimum score 2
|
|
1824
1873
|
{
|
|
1825
1874
|
targetUrl: 'https://www.e-minwon.go.kr/ge/ee/getListEcexmPrmsnAply.do',
|
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.js
CHANGED
|
@@ -1008,13 +1008,14 @@ const extractNttId = (html) => {
|
|
|
1008
1008
|
* @param listDataPath - API path segment (e.g., "/news/notice" or "/resources/academiccultural")
|
|
1009
1009
|
* @param infoPathPrefix - Detail page path prefix (e.g., "/news/notice/info")
|
|
1010
1010
|
*/
|
|
1011
|
-
const parseSeamuseList = async (_html, listDataPath, infoPathPrefix, customFetch) => {
|
|
1011
|
+
const parseSeamuseList = async (_html, listDataPath, infoPathPrefix, customFetch, searchCategory) => {
|
|
1012
|
+
const body = searchCategory ? `searchCategory=${searchCategory}` : '';
|
|
1012
1013
|
const response = await (customFetch ?? fetch)(`${BASE_URL$1}${listDataPath}/listData/1`, {
|
|
1013
1014
|
method: 'POST',
|
|
1014
1015
|
headers: {
|
|
1015
1016
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
1016
1017
|
},
|
|
1017
|
-
body
|
|
1018
|
+
body,
|
|
1018
1019
|
});
|
|
1019
1020
|
const data = await response.json();
|
|
1020
1021
|
const posts = [];
|
|
@@ -1294,6 +1295,34 @@ function createCrawlingTargetGroups(customFetch) {
|
|
|
1294
1295
|
parseList: (html) => parseSeamuseList(html, '/resources/academiccultural', '/resources/academiccultural/info', customFetch),
|
|
1295
1296
|
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academiccultural', customFetch),
|
|
1296
1297
|
},
|
|
1298
|
+
{
|
|
1299
|
+
id: '국립해양유산연구소_학술보고서_수중유산조사',
|
|
1300
|
+
name: '국립해양유산연구소 학술보고서 수중유산 조사',
|
|
1301
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1',
|
|
1302
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT001'),
|
|
1303
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
id: '국립해양유산연구소_학술보고서_수중유산보존',
|
|
1307
|
+
name: '국립해양유산연구소 학술보고서 수중유산 보존',
|
|
1308
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab2',
|
|
1309
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT002'),
|
|
1310
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1311
|
+
},
|
|
1312
|
+
{
|
|
1313
|
+
id: '국립해양유산연구소_학술보고서_전통선박',
|
|
1314
|
+
name: '국립해양유산연구소 학술보고서 전통 선박',
|
|
1315
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab3',
|
|
1316
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT003'),
|
|
1317
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1318
|
+
},
|
|
1319
|
+
{
|
|
1320
|
+
id: '국립해양유산연구소_학술보고서_해양문화역사',
|
|
1321
|
+
name: '국립해양유산연구소 학술보고서 해양문화역사',
|
|
1322
|
+
url: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab4',
|
|
1323
|
+
parseList: (html) => parseSeamuseList(html, '/resources/academicreport', '/resources/academicreport/info', customFetch, 'ACARPT004'),
|
|
1324
|
+
parseDetail: (html) => parseSeamuseDetail(html, '/resources/academicreport', customFetch),
|
|
1325
|
+
},
|
|
1297
1326
|
{
|
|
1298
1327
|
id: '국립고궁박물관_공지사항',
|
|
1299
1328
|
name: '국립고궁박물관 공지사항',
|
|
@@ -1799,6 +1828,26 @@ class AnalysisProvider {
|
|
|
1799
1828
|
targetUrl: 'https://www.kaah.kr/ipcopen',
|
|
1800
1829
|
minScore: 6,
|
|
1801
1830
|
},
|
|
1831
|
+
{
|
|
1832
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academiccultural/list/1',
|
|
1833
|
+
minScore: 6,
|
|
1834
|
+
},
|
|
1835
|
+
{
|
|
1836
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1',
|
|
1837
|
+
minScore: 6,
|
|
1838
|
+
},
|
|
1839
|
+
{
|
|
1840
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab2',
|
|
1841
|
+
minScore: 6,
|
|
1842
|
+
},
|
|
1843
|
+
{
|
|
1844
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab3',
|
|
1845
|
+
minScore: 6,
|
|
1846
|
+
},
|
|
1847
|
+
{
|
|
1848
|
+
targetUrl: 'https://www.seamuse.go.kr/resources/academicreport/list/1#tab4',
|
|
1849
|
+
minScore: 6,
|
|
1850
|
+
},
|
|
1802
1851
|
// Excavation report news: minimum score 2
|
|
1803
1852
|
{
|
|
1804
1853
|
targetUrl: 'https://www.e-minwon.go.kr/ge/ee/getListEcexmPrmsnAply.do',
|
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.2",
|
|
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,38 @@
|
|
|
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.68",
|
|
51
|
+
"@ai-sdk/google": "^3.0.61",
|
|
52
|
+
"@ai-sdk/openai": "^3.0.52",
|
|
53
53
|
"cheerio": "^1.2.0",
|
|
54
54
|
"dompurify": "^3.3.3",
|
|
55
|
-
"jsdom": "^29.0.
|
|
55
|
+
"jsdom": "^29.0.2",
|
|
56
56
|
"juice": "^11.1.1",
|
|
57
57
|
"safe-markdown2html": "^1.0.1",
|
|
58
|
-
"turndown": "^7.2.
|
|
58
|
+
"turndown": "^7.2.4"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@llm-newsletter-kit/core": "~1.3.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@eslint/js": "^10.0.1",
|
|
65
|
-
"@llm-newsletter-kit/core": "^1.3.
|
|
65
|
+
"@llm-newsletter-kit/core": "^1.3.9",
|
|
66
66
|
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
|
|
67
67
|
"@types/express": "^5.0.6",
|
|
68
68
|
"@types/jsdom": "^28.0.1",
|
|
69
|
-
"@types/node": "^25.5.
|
|
69
|
+
"@types/node": "^25.5.2",
|
|
70
70
|
"@types/turndown": "^5.0.6",
|
|
71
|
-
"eslint": "^10.
|
|
71
|
+
"eslint": "^10.2.0",
|
|
72
72
|
"eslint-plugin-unused-imports": "^4.4.1",
|
|
73
73
|
"express": "^5.2.1",
|
|
74
74
|
"prettier": "^3.8.1",
|
|
75
75
|
"rimraf": "^6.1.3",
|
|
76
|
-
"rollup": "^4.60.
|
|
76
|
+
"rollup": "^4.60.1",
|
|
77
77
|
"rollup-plugin-dts": "^6.4.1",
|
|
78
|
-
"rollup-plugin-typescript2": "^0.
|
|
78
|
+
"rollup-plugin-typescript2": "^0.37.0",
|
|
79
79
|
"tsx": "^4.21.0",
|
|
80
|
-
"typescript": "^
|
|
81
|
-
"typescript-eslint": "^8.
|
|
80
|
+
"typescript": "^6.0.2",
|
|
81
|
+
"typescript-eslint": "^8.58.1"
|
|
82
82
|
},
|
|
83
83
|
"repository": {
|
|
84
84
|
"type": "git",
|