-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.81 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
61
62
63
64
65
66
67
68
69
{
"name": "@workadventure/livekit-agent-plugin-fake-stt",
"version": "0.2.8",
"description": "Deterministic fake STT provider for LiveKit Agents tests",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workadventure/livekit-agent-plugin-fake-stt.git"
},
"homepage": "https://github.com/workadventure/livekit-agent-plugin-fake-stt#readme",
"bugs": {
"url": "https://github.com/workadventure/livekit-agent-plugin-fake-stt/issues"
},
"keywords": [
"livekit",
"agents",
"stt",
"speech-to-text",
"testing",
"deterministic"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"clean": "rm -rf dist coverage",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.test.json",
"lint": "eslint src test examples eslint.config.js vitest.config.ts tsup.config.ts",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "vitest run --coverage",
"test:watch": "vitest",
"prepack": "npm run clean && npm run build"
},
"peerDependencies": {
"@livekit/agents": "^1.0.48",
"@livekit/rtc-node": "^0.13.24"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@livekit/agents": "^1.0.48",
"@livekit/rtc-node": "^0.13.24",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.0",
"eslint": "^9.39.1",
"globals": "^17.4.0",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.0"
}
}