-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.06 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
{
"name": "pipeline",
"private": true,
"version": "1.0.0",
"description": "Datum content pipeline CLI — research, generate, and QA articles via Payload",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/snowopsdev/datum.git",
"directory": "pipeline"
},
"bugs": {
"url": "https://github.com/snowopsdev/datum/issues"
},
"homepage": "https://github.com/snowopsdev/datum#readme",
"engines": {
"node": ">=22.22.2"
},
"type": "module",
"scripts": {
"fetch": "tsx src/index.ts fetch",
"run": "tsx src/index.ts run",
"report": "tsx src/index.ts report",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.120.0",
"@mozilla/readability": "^0.6.0",
"@openai/codex-sdk": "0.152.1",
"dotenv": "17.4.2",
"linkedom": "^0.18.13",
"openai": "^7.8.0",
"payload": "3.88.0",
"undici": "^8.10.0"
},
"devDependencies": {
"@types/node": "26.4.1",
"tsx": "4.23.13",
"typescript": "5.7.3"
}
}