-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 908 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 908 Bytes
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
{
"name": "@tech9app/whisper.js",
"version": "1.0.21",
"main": "dist/index.js",
"repository": "git@github.com:Tech9Apps/whisper.js.git",
"author": "Durgaprasad-Budhwani <durgaprasad.budhwani@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/figlet": "^1.5.6",
"@types/readline-sync": "^1.4.4",
"@types/shelljs": "^0.8.12",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0"
},
"bin": {
"download": "dist/download.js"
},
"scripts": {
"build": "tsc && chmod +x dist/download.js",
"dev": "vite",
"install": "cd whisper.cpp && make && cd .. && npx cmake-js compile -T whisper-addon -B Release"
},
"dependencies": {
"@types/node": "^20.3.1",
"cmake-js": "^7.2.1",
"commander": "^11.0.0",
"figlet": "^1.6.0",
"node-addon-api": "^7.0.0",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5"
}
}