-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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
{
"name": "@bocoup/windows-sapi-tts-engine-for-automation",
"version": "0.0.4",
"description": "A WebSocket server which allows clients to observe the text enunciated by a screen reader and to simulate user input ",
"main": "index.js",
"bin": {
"at-driver": "./bin/at-driver"
},
"scripts": {
"prettier": "prettier --write lib test",
"test": "npm run test-style && npm run test-types && npm run test-unit",
"test-style": "prettier --check lib test",
"test-types": "tsc -p tsconfig.json",
"test-unit": "mocha --ui tdd test/**/*.js"
},
"files": [
"lib",
"Release/AutomationTtsEngine.dll",
"Release/MakeVoice.exe",
"Release/Vocalizer.exe",
"Release/macos"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.17",
"@types/ws": "^8.5.10",
"@types/yargs": "^17.0.32",
"mocha": "^9.1.2",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"robotjs": "^0.6.0",
"uuid": "^9.0.1",
"ws": "^8.2.3",
"yargs": "^17.2.1"
}
}