-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "live-captions",
"version": "1.7.5",
"main": "./build/index.js",
"bin": "./build/index.js",
"scripts": {
"start": "npx tsx ./src/index.ts --skip-update-check",
"start-gibberish": "tsc && node ./build/index.js --gibberish",
"dist": "tsc && pkg ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/speech": "^6.1.0",
"@materializecss/materialize": "^2.0.3-beta",
"audify": "^1.9.0",
"bad-words": "^3.0.4",
"body-parser": "^1.20.2",
"colorts": "^0.1.63",
"express": "^4.18.2",
"express-ws": "^5.0.2",
"pumpify": "^2.0.1"
},
"devDependencies": {
"@types/bad-words": "^3.0.3",
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/node": "^20.10.4",
"@types/pumpify": "^1.4.4",
"lorem-ipsum": "^2.0.8",
"pkg": "^5.8.1",
"typescript": "^5.3.3"
},
"pkg": {
"targets": [
"node18-windows-x64"
],
"assets": [
"./src/public/**/*",
"./node_modules/audify/**/*",
"./dist/april-asr/april-asr.exe"
],
"outputPath": "dist",
"entry": "./build/index.js"
}
}