-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.08 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "future-audio-intelligence",
"version": "1.0.1",
"description": "Provider-agnostic audio transcription and summarization toolkit. Pluggable STT providers (OpenAI, Deepgram, Local Whisper) and LLM summarizers (Claude, OpenAI).",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./transcribers": {
"types": "./dist/transcribers/index.d.ts",
"import": "./dist/transcribers/index.js"
},
"./summarizers": {
"types": "./dist/summarizers/index.d.ts",
"import": "./dist/summarizers/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "bun run --watch src/index.ts",
"test": "bun test ./src/",
"test:build": "bun test ./tests/",
"test:all": "bun run build && bun test ./src/ && bun test ./tests/",
"smoke": "bun run scripts/smoke-test.ts",
"integration": "bun run scripts/integration-test.ts",
"example:basic": "bun run examples/basic.ts",
"example:pipeline": "bun run examples/pipeline.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"speech-to-text",
"transcription",
"whisper",
"deepgram",
"summarization",
"arabic",
"audio",
"ai",
"openrouter",
"gemini",
"claude",
"openai"
],
"author": "FutureSolutionDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FutureSolutionDev/future-audio-intelligence"
},
"homepage": "https://github.com/FutureSolutionDev/future-audio-intelligence#readme",
"bugs": {
"url": "https://github.com/FutureSolutionDev/future-audio-intelligence/issues"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"openai": "6.37.0",
"uuid": "^14.0.0"
},
"devDependencies": {
"future-audio-intelligence": "latest",
"@types/bun": "latest",
"@types/uuid": "^11.0.0",
"hono": "^4.12.18",
"typescript": "^5.4.0"
}
}