-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.13 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@drakulavich/kesha-voice-kit",
"version": "1.24.3",
"description": "Give your tools a voice — speech to text and back, 25 languages, up to ~19× faster than Whisper. On your machine.",
"type": "module",
"bin": {
"kesha": "bin/kesha.js"
},
"exports": {
".": "./src/cli.ts",
"./core": "./src/lib.ts"
},
"files": [
"bin/",
"completions/",
"man/",
"src/",
"package.json",
"tsconfig.json",
"openclaw.plugin.json",
"openclaw-plugin.cjs",
"docs/diagnostic-logs.md",
"docs/product-positioning.md",
"SKILL.md",
"LICENSE",
"NOTICES.md",
"README.md"
],
"openclaw": {
"extensions": [
"./openclaw-plugin.cjs"
],
"compat": {
"pluginApi": ">=2026.5.27"
},
"build": {
"openclawVersion": "2026.5.27"
}
},
"keshaEngine": {
"version": "1.24.3"
},
"scripts": {
"test": "bun test",
"test:watch": "bun test --watch",
"test:unit": "bun test tests/unit/",
"test:cli-fast": "bun test tests/unit/ tests/integration/cli-contracts.test.ts tests/integration/e2e-cli.test.ts tests/integration/say.test.ts",
"test:integration": "bun test tests/integration/",
"coverage:ts": "bun run test:cli-fast --coverage --coverage-reporter=text --coverage-reporter=lcov --coverage-dir=coverage/ts",
"coverage:check:ts": "bun .github/scripts/check-coverage.ts --preset=ts --lcov=coverage/ts/lcov.info --summary=coverage/ts/summary.md",
"coverage:rust": "mkdir -p coverage/rust && cd rust && cargo llvm-cov nextest --features tts --lcov --output-path ../coverage/rust/lcov.info",
"coverage:check:rust": "bun .github/scripts/check-coverage.ts --preset=rust --lcov=coverage/rust/lcov.info --summary=coverage/rust/summary.md",
"generate:shell-artifacts": "bun scripts/generate-shell-artifacts.ts",
"lint": "bunx tsc --noEmit",
"lint:tsgo": "bunx tsgo --noEmit",
"check": "bun run lint && bun run check:versions && bun run test:cli-fast",
"check:workflows": "bun .github/scripts/check-workflows.ts",
"check:release-manifest": "bun .github/scripts/release-manifest.mjs --check",
"check:versions": "bun .github/scripts/check-versions.ts"
},
"keywords": [
"asr",
"speech-to-text",
"transcription",
"voice",
"kesha",
"multilingual",
"apple-silicon",
"coreml",
"bun",
"cli"
],
"author": "drakulavich",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/drakulavich/kesha-voice-kit.git"
},
"homepage": "https://drakulavich.github.io/kesha-voice-kit/",
"bugs": {
"url": "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/drakulavich/kesha-voice-kit/issues"
},
"engines": {
"bun": ">=1.3.0"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260423.1",
"fast-xml-parser": "^5.8.0",
"typescript": "^6.0.2",
"yaml": "^2.9.0"
},
"dependencies": {
"@clack/prompts": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@toon-format/toon": "^2.1.0",
"citty": "^0.2.2",
"fastest-levenshtein": "^1.0.16",
"picocolors": "^1.1.1",
"tinyld": "^1.3.4",
"zod": "^4.4.3"
}
}