-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.24 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
{
"name": "vosk-koffi",
"version": "1.1.0",
"description": "Vosk node API based on Koffi.",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"format": "prettier --write '**/*.{js,ts,jsx,tsx,json,yml,yaml,md,html}' --ignore-path .gitignore",
"lint": "eslint .",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"vosk",
"speech recognition",
"voice",
"speech recognition",
"wav to text",
"speech",
"recognition"
],
"files": [
"lib",
"scripts"
],
"author": "tocha688",
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.js"
}
},
"homepage": "https://github.com/tocha688/vosk-koffi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tocha688/vosk-koffi.git"
},
"bugs": {
"url": "https://github.com/tocha688/vosk-koffi/issues"
},
"dependencies": {
"koffi": "^2.8.6",
"nodejs-file-downloader": "^4.12.1",
"yauzl": "^3.1.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"tsup": "^5.12.9",
"typescript": "^4.7.4"
}
}