@mohak34/opencode-notifier 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +118 -0
- package/dist/index.js +3960 -0
- package/package.json +46 -0
- package/sounds/complete.wav +0 -0
- package/sounds/error.wav +0 -0
- package/sounds/permission.wav +0 -0
package/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mohak34/opencode-notifier",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "OpenCode plugin that sends system notifications and plays sounds when permission is needed, generation completes, or errors occur",
|
|
5
|
+
"author": "mohak34",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "dist/index.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/mohak34/opencode-notifier.git"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/mohak34/opencode-notifier#readme",
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/mohak34/opencode-notifier/issues"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"sounds"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "bun build src/index.ts --outdir dist --target node",
|
|
24
|
+
"prepublishOnly": "bun run build",
|
|
25
|
+
"typecheck": "tsc --noEmit"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [
|
|
28
|
+
"opencode",
|
|
29
|
+
"opencode-plugin",
|
|
30
|
+
"notifications",
|
|
31
|
+
"sound",
|
|
32
|
+
"alerts"
|
|
33
|
+
],
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"node-notifier": "^10.0.1"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@opencode-ai/plugin": "^1.0.0",
|
|
39
|
+
"@types/node": "^22.0.0",
|
|
40
|
+
"@types/node-notifier": "^8.0.5",
|
|
41
|
+
"typescript": "^5.0.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@opencode-ai/plugin": ">=1.0.0"
|
|
45
|
+
}
|
|
46
|
+
}
|
|
Binary file
|
package/sounds/error.wav
ADDED
|
Binary file
|
|
Binary file
|