Files
CoderLambert e95a4150e8 feat: initial commit - AI Agent News 资讯聚合系统
功能特性:
- 多源新闻聚合 (13 个渠道)
- 每小时自动抓取
- 自动翻译 (英文->中文)
- 智能分类 (7 个类别)
- 响应式设计 (移动端优化)
- 定时任务调度

技术栈:
- VitePress + Vue 3
- Node.js 抓取脚本
- Cron 定时任务

新闻来源:
- OpenAI News, MIT CSAIL, TechCrunch AI
- Wired AI, Ars Technica AI, 量子位
- Hacker News, Reddit, Lilian Weng Blog 等
2026-03-22 23:42:28 +08:00

30 lines
640 B
JSON

{
"name": "ai-news",
"version": "1.0.0",
"description": "AI Agent News Aggregator",
"type": "module",
"scripts": {
"dev": "vitepress dev docs",
"build": "vitepress build docs",
"preview": "vitepress preview docs",
"fetch-news": "node src/fetch-news.js",
"translate": "node src/translate-news.js",
"discover": "node src/discover-channels.js"
},
"keywords": [
"ai",
"agent",
"news",
"aggregator"
],
"author": "",
"license": "ISC",
"dependencies": {
"cheerio": "^1.2.0",
"node-fetch": "^3.3.2",
"vitepress": "^1.6.4",
"vue": "^3.5.30",
"xml2js": "^0.6.2"
}
}