-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.42 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "ai-hot-data-core",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "AI HOT 数据标注框架 — 标注摄入、金标数据集管理、评估管线",
"scripts": {
"dev": "tsx --watch src/server.ts",
"migrate": "tsx src/db/migrate.ts",
"eval": "tsx src/eval/run_eval.ts",
"backfill:arxiv": "tsx src/scripts/backfill_arxiv_published_at.ts",
"backfill:hf": "tsx src/scripts/backfill_huggingface_blog.ts",
"backfill:embeddings": "tsx src/scripts/backfill_embeddings.ts",
"backfill:clusters": "tsx src/scripts/backfill_clusters.ts",
"refresh:editorial": "tsx src/scripts/refresh_editorial_content.ts",
"prune:old": "tsx src/scripts/prune_old_articles.ts",
"distill:strategy": "tsx src/scripts/distill_strategy.ts",
"recalibrate:sources": "tsx src/scripts/recalibrate_source_tiers.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"cheerio": "^1.2.0",
"cors": "^2.8.6",
"dotenv": "^16.4.7",
"express": "^5.2.1",
"openai": "^6.36.0",
"pg": "^8.13.0",
"react-router-dom": "^7.14.2",
"rss-parser": "^3.13.0"
},
"optionalDependencies": {
"@xenova/transformers": "^2.17.2"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.10.0",
"@types/pg": "^8.11.10",
"@types/react-router-dom": "^5.3.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}