-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
80 lines (80 loc) · 2.82 KB
/
package.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "autoshow",
"author": "Anthony Campolo",
"description": "An example workflow for automatically generating customizable show notes for audio and video files.",
"keywords": [
"Claude",
"ChatGPT",
"Cohere",
"Mistral",
"Fireworks",
"Together",
"Groq",
"Whisper",
"Deepgram",
"AssemblyAI"
],
"main": "dist/autoshow.js",
"type": "module",
"bin": {
"autoshow": "./dist/autoshow.js"
},
"scripts": {
"tsx:base": "tsx --env-file=.env --no-warnings --experimental-sqlite",
"setup": "bash ./scripts/setup.sh",
"setup-python": "bash ./scripts/setup-python.sh",
"autoshow": "npm run tsx:base -- src/autoshow.ts",
"as": "npm run tsx:base -- src/autoshow.ts",
"v": "npm run as -- --video",
"u": "npm run as -- --urls",
"p": "npm run as -- --playlist",
"f": "npm run as -- --file",
"r": "npm run as -- --rss",
"rss-info": "npm run as -- --info --rss",
"info": "npm run as -- --info",
"last2": "npm run as -- --last 2 --rss",
"last3": "npm run as -- --last 3 --rss",
"docker": "docker compose run --remove-orphans --rm autoshow --whisperDocker",
"docker-up": "docker compose up --build -d --remove-orphans --no-start",
"ds": "docker compose images && docker compose ls",
"prune": "docker system prune -af --volumes && docker image prune -af && docker container prune -f && docker volume prune -af",
"serve": "npm run tsx:base -- --watch --experimental-sqlite packages/server/index.ts",
"fetch-local": "npm run tsx:base -- packages/server/tests/fetch-local.ts",
"fetch-all": "npm run tsx:base -- packages/server/tests/fetch-all.ts",
"t": "npm run test-local",
"bench": "tsx --test test/bench.test.ts",
"test-bench": "tsx --test test/bench.test.ts",
"test-local": "tsx --test test/local.test.ts",
"test-docker": "tsx --test test/docker.test.ts",
"test-integrations": "tsx --test test/integrations.test.ts",
"clean": "tsx scripts/cleanContent.ts",
"bun": "bun --env-file=.env --no-warnings src/autoshow.ts",
"deno": "deno run --allow-sys --allow-read --allow-run --allow-write --allow-env --unstable-sloppy-imports src/autoshow.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "0.30.1",
"@deepgram/sdk": "3.9.0",
"@fastify/cors": "10.0.1",
"@google/generative-ai": "0.21.0",
"@mistralai/mistralai": "1.1.0",
"assemblyai": "4.7.1",
"chalk": "5.3.0",
"cohere-ai": "7.14.0",
"commander": "12.1.0",
"fast-xml-parser": "4.5.0",
"fastify": "5.0.0",
"file-type": "19.6.0",
"inquirer": "12.0.1",
"js-yaml": "^4.1.0",
"ollama": "0.5.9",
"openai": "4.68.4"
},
"devDependencies": {
"@types/inquirer": "9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.8.1",
"tsx": "4.19.1",
"typedoc": "0.26.10",
"typescript": "5.6.3"
}
}