-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 896 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"name": "leadhunter-engine",
"version": "1.0.0",
"private": true,
"description": "Shared article generation engine for LeadHunter client blogs",
"type": "module",
"scripts": {
"generate-article": "node scripts/generate-article.mjs",
"generate-article:dry": "node scripts/generate-article.mjs --dry-run",
"gsc-index-check": "node scripts/gsc-index-check.mjs",
"gsc-keyword-performance": "node scripts/gsc-keyword-performance.mjs",
"ai-citation-research": "node scripts/ai-citation-research.mjs",
"geo-health-check": "bash scripts/geo-health-check.sh"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.24.1",
"glob": "^10.5.0",
"googleapis": "^171.4.0",
"openai": "^6.22.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=22"
}
}