-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
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
{
"name": "vcon-wtf-server",
"version": "1.0.0",
"description": "VCON transcription server with NVIDIA NIM ASR (Parakeet/Canary) and WTF format output",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit"
},
"keywords": [
"vcon",
"transcription",
"nvidia",
"parakeet",
"canary",
"asr",
"speech-to-text",
"wtf",
"ietf"
],
"author": "Thomas Howe",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@fastify/cors": "^10.0.1",
"@fastify/swagger": "^9.4.2",
"@fastify/swagger-ui": "^5.2.1",
"dotenv": "^17.2.3",
"fastify": "^5.2.1",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"undici": "^7.2.0",
"uuid": "^11.0.5",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}