-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 3.1 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
{
"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"
],
"type": "module",
"scripts": {
"tsx:base": "tsx --env-file=.env --no-warnings --experimental-sqlite",
"setup": "bash ./scripts/setup.sh",
"setup-docker": "docker build --progress=plain -t autoshow -f .github/Dockerfile .",
"docker-setup": "docker build --progress=plain -t autoshow -f .github/Dockerfile .",
"setup-all": "npm run setup && npm run docker-setup",
"as": "npm run tsx:base -- src/cli/commander.ts",
"video": "npm run as -- --video",
"urls": "npm run as -- --urls",
"playlist": "npm run as -- --playlist",
"file": "npm run as -- --file",
"rss": "npm run as -- --rss",
"info": "npm run as -- --info",
"serve": "npm run tsx:base -- --watch --experimental-sqlite src/server/index.ts",
"clean": "npm run tsx:base scripts/cleanContent.ts",
"ta": "tsx --test test/all.test.ts",
"test-all": "tsx --test test/all.test.ts",
"t": "npm run test-local",
"test-local": "tsx --test test/local.test.ts",
"test-docker": "tsx --test test/docker.test.ts",
"test-services": "tsx --test test/services.test.ts",
"test-server-all": "npm run tsx:base -- src/server/tests/fetch-all.ts",
"ts": "npm run tsx:base -- src/server/tests/fetch-local.ts",
"test-server-local": "npm run tsx:base -- src/server/tests/fetch-local.ts",
"docker-cli": "docker run --rm --env-file .env -v $PWD/content:/usr/src/app/content autoshow",
"docker-serve": "docker run -d -p 3000:3000 -v $PWD/content:/usr/src/app/content autoshow serve",
"docker-debug": "docker run --rm -it --entrypoint sh autoshow -c 'ls -lh /usr/src/app && ls -lh /usr/src/app/whisper.cpp/models && ls -lh /usr/src/app/whisper.cpp/build/bin'",
"ollama-debug": "docker run --rm -it --entrypoint sh autoshow -c 'ls -l /usr/local/bin/ollama && ls -lh /root/.ollama'",
"prune": "docker system prune -af --volumes && docker image prune -af && docker container prune -f && docker volume prune -af",
"bun": "bun --env-file=.env --no-warnings src/cli/commander.ts",
"deno": "deno run --allow-sys --allow-read --allow-run --allow-write --allow-env --unstable-sloppy-imports src/cli/commander.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "0.33.1",
"@deepgram/sdk": "3.9.0",
"@fastify/cors": "10.0.1",
"@google/generative-ai": "0.21.0",
"@mistralai/mistralai": "1.3.5",
"assemblyai": "4.8.0",
"better-sqlite3": "11.7.0",
"chalk": "5.4.1",
"cohere-ai": "7.15.0",
"commander": "13.0.0",
"fast-xml-parser": "4.5.1",
"fastify": "5.2.0",
"file-type": "19.6.0",
"js-yaml": "4.1.0",
"ollama": "0.5.11",
"openai": "4.77.0",
"sqlite-vec": "0.1.6"
},
"devDependencies": {
"@types/js-yaml": "4.0.9",
"@types/node": "22.10.3",
"tsx": "4.19.2",
"typedoc": "0.27.6",
"typescript": "5.7.2"
}
}