-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 996 Bytes
/
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
{
"name": "@vscode/node-speech",
"version": "1.4.0",
"description": "Native bindings for Micrsooft Speech SDK",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/node-speech"
},
"homepage": "https://github.com/Microsoft/node-speech",
"keywords": [
"vscode"
],
"license": "MIT",
"author": {
"name": "Microsoft Corporation"
},
"engines": {
"node": ">=18.0.0"
},
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"install": "pwsh setup-packages.ps1 && node preinstall.js",
"postinstall": "node-gyp rebuild",
"prepublish": "tsc",
"prepare": "npm run test",
"watch": "tsc -w",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.x",
"jest": "^29.7.0",
"typescript": "^5.4.x"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0",
"yauzl": "^3.1.3"
},
"jest": {
"testMatch": [
"**/*.test.js"
]
}
}