-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 880 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 880 Bytes
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
{
"name": "opencode-voice-plugin",
"version": "1.0.0",
"description": "OpenCode plugin for text-to-speech voice output and notifications",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist"
},
"keywords": [
"opencode",
"plugin",
"tts",
"text-to-speech",
"voice",
"notifications"
],
"author": "Olbrasoft",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Olbrasoft/opencode-voice-plugin.git"
},
"bugs": {
"url": "https://github.com/Olbrasoft/opencode-voice-plugin/issues"
},
"homepage": "https://github.com/Olbrasoft/opencode-voice-plugin#readme",
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@types/node": "^24.10.1",
"typescript": "^5.0.0"
}
}