-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "opencode-sfx",
"version": "0.1.1",
"description": "Sound effects plugin for OpenCode — audio notifications when your AI agent finishes, needs input, or errors",
"main": "index.ts",
"type": "module",
"license": "MIT",
"author": "Jim Rubenstein",
"repository": {
"type": "git",
"url": "https://github.com/jimrubenstein/opencode-sfx.git"
},
"homepage": "https://github.com/jimrubenstein/opencode-sfx",
"keywords": [
"opencode",
"opencode-plugin",
"sound-effects",
"notifications",
"ai-coding",
"terminal",
"tmux",
"starcraft"
],
"bin": {
"opencode-sfx": "./bin/opencode-sfx"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "bash test/e2e/run-e2e.sh",
"test:e2e:debug": "bash test/e2e/run-e2e.sh --keep-session"
},
"dependencies": {
"@clack/prompts": "^1.0.1",
"yaml": "^2.7.0"
},
"devDependencies": {
"@opencode-ai/plugin": "*",
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
}
}