forked from SouthBridgeAI/offmute
-
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.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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": "offmute",
"version": "0.1.0",
"author": "Hrishi Olickel <twitter-@hrishioa> (https://olickel.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/southbridgeai/offmute.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"bin": {
"offmute": "./dist/run.js"
},
"devDependencies": {
"@swc/core": "^1.7.40",
"@types/bun": "^1.1.12",
"@types/node": "^22.8.4",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.cts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"description": "An experiment in meeting transcription and diarization with just an LLM.",
"files": [
"dist",
"package.json"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsup src/index.ts src/run.ts && tsc --emitDeclarationOnly --declaration --declarationDir dist && mv dist/index.d.ts dist/index.d.mts && cp dist/index.d.mts dist/index.d.cts"
},
"type": "module",
"types": "./dist/index.d.cts",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"fluent-ffmpeg": "^2.1.3"
}
}