-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "podflow",
"version": "0.2.0",
"description": "Your podcast listening, working for you. Extract guests, ideas, and insights from your Apple Podcasts library using AI.",
"type": "module",
"bin": {
"podflow": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/cli.ts --format esm --target node20 --clean",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"podcast",
"apple-podcasts",
"ai",
"digest",
"guests",
"insights",
"claude",
"openai",
"ollama",
"cli"
],
"author": "Chris Schofield",
"license": "MIT",
"homepage": "https://github.com/totalaudiopromo/podflow#readme",
"repository": {
"type": "git",
"url": "https://github.com/totalaudiopromo/podflow"
},
"bugs": {
"url": "https://github.com/totalaudiopromo/podflow/issues"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.0.0",
"@ai-sdk/google": "^1.0.0",
"@ai-sdk/openai": "^1.0.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"ai": "^4.0.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"ora": "^9.3.0",
"rss-parser": "^3.13.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"vitest": "^4.1.10"
},
"packageManager": "pnpm@10.34.5"
}