-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.66 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
{
"name": "opencode-smart-voice-notify",
"version": "1.3.3",
"description": "Smart voice notification plugin for OpenCode with multiple TTS engines (ElevenLabs, Edge TTS, Windows SAPI), AI-generated dynamic messages, and intelligent reminder system",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage"
},
"author": "MasuRii",
"license": "MIT",
"keywords": [
"opencode",
"opencode-plugins",
"plugin",
"notification",
"tts",
"text-to-speech",
"elevenlabs",
"edge-tts",
"sapi",
"voice",
"alert",
"smart",
"ai",
"ai-generated",
"ollama",
"local-ai"
],
"files": [
"dist/",
"assets/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MasuRii/opencode-smart-voice-notify.git"
},
"bugs": {
"url": "https://github.com/MasuRii/opencode-smart-voice-notify/issues"
},
"homepage": "https://github.com/MasuRii/opencode-smart-voice-notify#readme",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"dependencies": {
"@elevenlabs/elevenlabs-js": "^2.36.0",
"detect-terminal": "^2.0.0",
"msedge-tts": "^2.0.4",
"node-notifier": "^10.0.1"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.8"
},
"devDependencies": {
"@types/node": "^20.19.33",
"@types/node-notifier": "^8.0.5",
"bun-types": "^1.3.9",
"typescript": "^5.9.3"
}
}