@heripo/research-radar 5.2.0 → 5.2.1

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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +17 -17
package/README.md CHANGED
@@ -67,10 +67,10 @@ For academic publications:
67
67
  ## Installation
68
68
 
69
69
  ```bash
70
- npm install @heripo/research-radar '@llm-newsletter-kit/core@~3.0.0'
70
+ npm install @heripo/research-radar '@llm-newsletter-kit/core@~3.0.6'
71
71
  ```
72
72
 
73
- **Requirements**: Node.js >= 24 and an ESM application. The package exports `dist/index.js` and TypeScript declarations (`dist/index.d.ts`), with a JavaScript sourcemap. The core engine is a peer dependency; the current supported range is `~3.0.5`. 3.0.5 is the floor because the newsletter generation prompt this package ships relies on the self-verification retry cap added there.
73
+ **Requirements**: Node.js 24.15.0 or newer within 24.x, or >= 26.0.0, and an ESM application. Node.js 25 is not supported. The package exports `dist/index.js` and TypeScript declarations (`dist/index.d.ts`), with a JavaScript sourcemap. The core engine is a peer dependency; the current supported range is `~3.0.6`. The floor moved to 3.0.6 because the 나라장터 target runs its triage inside a crawl fetch that core times out, and before 3.0.6 core classified a timeout as non-retryable, so that target failed on the first attempt every run. 3.0.5 remains required for the self-verification retry cap the generation prompt relies on.
74
74
 
75
75
  Article analysis requires an OpenAI API key. Content generation requires a key for the selected provider (OpenAI / Anthropic / Google); OpenAI can use the same key for both. Keys are passed explicitly to the library; load environment variables in your application.
76
76
 
@@ -176,7 +176,7 @@ Defaults below describe the checked-in code, not provider recommendations. This
176
176
 
177
177
  Select content generation with `contentGeneration: { provider, apiKey, model? }`. `model` overrides that provider's default. Analysis models are configured in [analysis.provider.ts](./src/providers/analysis.provider.ts).
178
178
 
179
- [src/config/index.ts](./src/config/index.ts) defines Korean output (`outputLanguage: '한국어'`), the cultural heritage domain (`expertField: ['문화유산']`), brand name, `subscribePageUrl`, LLM `maxRetries: 5`, chain `stopAfterAttempt: 3`, and generation `temperature: 0.3`. Publication settings are `minimumArticleCountForIssue: 5` and `priorityArticleScoreThreshold: 8`; the core engine evaluates them. In the locked core 3.0.5 implementation, the count check skips **5 or fewer** candidates unless at least one has importance score >= 8. An empty candidate list is always skipped.
179
+ [src/config/index.ts](./src/config/index.ts) defines Korean output (`outputLanguage: '한국어'`), the cultural heritage domain (`expertField: ['문화유산']`), brand name, `subscribePageUrl`, LLM `maxRetries: 5`, chain `stopAfterAttempt: 3`, and generation `temperature: 0.3`. Publication settings are `minimumArticleCountForIssue: 5` and `priorityArticleScoreThreshold: 8`; the core engine evaluates them. In the locked core 3.0.6 implementation, the count check skips **5 or fewer** candidates unless at least one has importance score >= 8. An empty candidate list is always skipped.
180
180
 
181
181
  ## Crawling targets and parsers
182
182
 
@@ -270,7 +270,7 @@ npm run format # format src/ with Prettier
270
270
  npm run format:check # check src/ formatting
271
271
  ```
272
272
 
273
- The build emits ESM, declarations, and a JavaScript sourcemap; runtime dependencies remain external. CI runs `npm ci`, `format:check`, `lint:ci`, `typecheck`, and `build` on Node.js 24.x for pull requests and manual dispatch. Formatting scripts cover `src/`; to check the READMEs explicitly, run `npx prettier --check README.md README-ko.md`. There is no `npm test` script.
273
+ The build emits ESM, declarations, and a JavaScript sourcemap; runtime dependencies remain external. CI runs `npm ci`, `format:check`, `lint:ci`, `typecheck`, and `build` on the minimum supported Node.js version (24.15.0), the latest 24.x, and the latest 26.x for pull requests and manual dispatch. Formatting scripts cover `src/`; to check the READMEs explicitly, run `npx prettier --check README.md README-ko.md`. There is no `npm test` script.
274
274
 
275
275
  For maintainers, `release` publishes to npm, while `release:patch`, `release:minor`, and `release:major` bump the version and publish. The version hooks build first and push commits/tags; `prepublishOnly` builds before publishing.
276
276
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@heripo/research-radar",
3
3
  "private": false,
4
4
  "type": "module",
5
- "version": "5.2.0",
5
+ "version": "5.2.1",
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.js",
8
8
  "types": "dist/index.d.ts",
@@ -48,39 +48,39 @@
48
48
  "author": "kimhongyeon",
49
49
  "license": "Apache-2.0",
50
50
  "dependencies": {
51
- "@ai-sdk/anthropic": "^4.0.49",
52
- "@ai-sdk/google": "^4.0.63",
53
- "@ai-sdk/openai": "^4.0.58",
54
- "ai": "^7.0.92",
51
+ "@ai-sdk/anthropic": "^4.0.58",
52
+ "@ai-sdk/google": "^4.0.76",
53
+ "@ai-sdk/openai": "^4.0.71",
54
+ "ai": "^7.0.107",
55
55
  "cheerio": "^1.2.0",
56
- "dompurify": "^3.4.14",
57
- "jsdom": "^30.0.1",
58
- "juice": "^12.1.2",
59
- "safe-markdown2html": "^1.0.12",
56
+ "dompurify": "^3.4.15",
57
+ "jsdom": "^30.1.0",
58
+ "juice": "^12.1.3",
59
+ "safe-markdown2html": "^1.0.13",
60
60
  "turndown": "^7.2.4"
61
61
  },
62
62
  "peerDependencies": {
63
- "@llm-newsletter-kit/core": "~3.0.5"
63
+ "@llm-newsletter-kit/core": "~3.0.6"
64
64
  },
65
65
  "devDependencies": {
66
66
  "@eslint/js": "^10.0.1",
67
- "@llm-newsletter-kit/core": "^3.0.5",
67
+ "@llm-newsletter-kit/core": "^3.0.6",
68
68
  "@trivago/prettier-plugin-sort-imports": "^6.0.2",
69
69
  "@types/express": "^5.0.6",
70
70
  "@types/jsdom": "^30.0.0",
71
- "@types/node": "^26.4.1",
71
+ "@types/node": "^26.6.2",
72
72
  "@types/turndown": "^5.0.6",
73
- "eslint": "^10.9.1",
73
+ "eslint": "^10.11.0",
74
74
  "eslint-plugin-unused-imports": "^4.4.1",
75
75
  "express": "^5.2.1",
76
- "prettier": "^3.9.6",
76
+ "prettier": "^3.9.8",
77
77
  "rimraf": "^6.1.3",
78
- "rollup": "^4.63.1",
78
+ "rollup": "^4.63.4",
79
79
  "rollup-plugin-dts": "^6.5.1",
80
80
  "rollup-plugin-typescript2": "^0.37.0",
81
81
  "tsx": "^4.23.13",
82
82
  "typescript": "^6.0.3",
83
- "typescript-eslint": "^8.69.0"
83
+ "typescript-eslint": "^8.70.0"
84
84
  },
85
85
  "repository": {
86
86
  "type": "git",
@@ -109,7 +109,7 @@
109
109
  "example"
110
110
  ],
111
111
  "engines": {
112
- "node": ">=24"
112
+ "node": "^24.15.0 || >=26.0.0"
113
113
  },
114
114
  "publishConfig": {
115
115
  "access": "public"