forked from handy-computer/transcribe.cpp
-
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.53 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.53 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": "transcribe-cpp",
"version": "0.1.2",
"description": "TypeScript/Node.js bindings for transcribe.cpp — a C/C++ speech-to-text library built on ggml",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE", "scripts/build-from-source.mjs"],
"license": "MIT",
"author": "The transcribe.cpp authors",
"homepage": "https://github.com/handy-computer/transcribe.cpp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/handy-computer/transcribe.cpp.git"
},
"bugs": {
"url": "https://github.com/handy-computer/transcribe.cpp/issues"
},
"keywords": ["transcription", "speech-to-text", "asr", "stt", "ggml", "whisper", "parakeet"],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc",
"build:native": "node scripts/build-from-source.mjs",
"pretest": "npm run build",
"test": "node --test test/*.test.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"koffi": "^3.0.2"
},
"optionalDependencies": {
"@transcribe-cpp/darwin-arm64-metal": "0.1.2",
"@transcribe-cpp/darwin-x64-cpu": "0.1.2",
"@transcribe-cpp/linux-x64-cpu-vulkan": "0.1.2",
"@transcribe-cpp/linux-arm64-cpu-vulkan": "0.1.2",
"@transcribe-cpp/win32-x64-cpu-vulkan": "0.1.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.6.0"
}
}