-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.73 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.73 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
{
"name": "podgraph",
"version": "1.0.0",
"description": "Podcast transcription and AI extraction pipeline (CLI scripts)",
"type": "module",
"scripts": {
"transcribe": "tsx scripts/transcribe.ts",
"identify": "tsx scripts/identify-speakers.ts",
"extract": "tsx scripts/extract.ts",
"correct": "tsx scripts/correct-transcript.ts",
"update-registry": "tsx scripts/update-registry.ts",
"validate": "tsx scripts/validate-extraction.ts",
"correct-quotes": "tsx scripts/correct-quotes.ts",
"extract-multipass": "tsx scripts/extract-multipass.ts",
"extract-4pass": "tsx scripts/extract-4pass.ts",
"aggregate": "tsx scripts/aggregate.ts",
"build-profile": "tsx scripts/build-profile.ts",
"add-podcast": "tsx scripts/add-podcast.ts",
"discover": "tsx scripts/discover.ts",
"costs": "tsx scripts/costs.ts",
"status": "tsx scripts/status.ts",
"export-prompt": "tsx scripts/export-prompt.ts",
"extract-gemini": "tsx scripts/extract-gemini.ts",
"pipeline": "tsx scripts/pipeline.ts",
"lex": "tsx scripts/lex/pipeline.ts",
"lex:fetch": "tsx scripts/lex/fetch-transcript.ts",
"test-keys": "tsx scripts/test-keys.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dstrunin/PodGraph.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dstrunin/PodGraph/issues"
},
"homepage": "https://github.com/dstrunin/PodGraph#readme",
"dependencies": {
"@anthropic-ai/sdk": "^0.80.0",
"@deepgram/sdk": "^5.0.0",
"@google/genai": "^1.47.0",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"fast-xml-parser": "^5.5.9",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"zod": "^4.3.6"
}
}