-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.59 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "smart-whisper",
"version": "0.8.1",
"description": "Whisper.cpp Node.js binding with auto model offloading strategy.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"whisper",
"whisper.cpp",
"native",
"binding",
"addon"
],
"author": "JacobLinCool <[email protected]> (https://github.com/JacobLinCool)",
"license": "MIT",
"gypfile": true,
"files": [
"dist",
"src",
"scripts",
"binding.gyp",
"whisper.cpp/**/*.{c,h,cpp,hpp,m,cu,metal}",
"whisper.cpp/Makefile",
"whisper.cpp/LICENSE"
],
"scripts": {
"prepare": "husky install",
"format": "prettier --ignore-path .gitignore --write .",
"build": "tsup && node-gyp rebuild",
"install": "node-gyp rebuild",
"changeset": "changeset",
"build:docs": "typedoc --out docs src/index.ts",
"test": "vitest --dir test"
},
"dependencies": {
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/node": "^20.10.6",
"@types/node-wav": "^0.0.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"node-wav": "^0.0.2",
"prettier": "^3.1.1",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typedoc": "^0.25.6",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobLinCool/smart-whisper.git"
},
"homepage": "https://jacoblincool.github.io/smart-whisper/",
"bugs": {
"url": "https://github.com/JacobLinCool/smart-whisper/issues"
},
"lint-staged": {
"*.{ts,js,json,yaml,yml}": [
"prettier --write"
]
},
"packageManager": "[email protected]"
}