-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.34 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
{
"name": "defou-workflow-agent",
"version": "1.0.0",
"description": "Automated content creation workflow based on Defou methodology",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"skill:tophub": "export NODE_PATH=./node_modules && ts-node --project tsconfig.json ./skills/tophub-trends/tophub.ts",
"skill:master": "ts-node src/master.ts",
"skill:list": "export NODE_PATH=./node_modules && ts-node --project tsconfig.json ./skills/article-list-processor/index.ts",
"skill:local": "export NODE_PATH=./node_modules && ts-node --project tsconfig.json ./skills/local-file-rewriter/index.ts",
"skill:witty": "export NODE_PATH=./node_modules && ts-node --project tsconfig.json ./skills/witty-humor-style/index.ts",
"migrate:outputs": "ts-node scripts/migrate-outputs.ts",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@mozilla/readability": "^0.6.0",
"cheerio": "^1.1.2",
"chokidar": "^5.0.0",
"dotenv": "^16.4.7",
"jsdom": "^27.4.0",
"node-fetch": "^2.7.0",
"p-limit": "^7.2.0"
},
"devDependencies": {
"@types/chokidar": "^1.7.5",
"@types/jsdom": "^27.0.0",
"@types/node": "^22.10.2",
"@types/node-fetch": "^2.6.13",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}