-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.25 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
{
"name": "@mohak34/opencode-notifier",
"version": "0.2.9-beta.0",
"description": "OpenCode plugin that sends system notifications and plays sounds when permission is needed, generation completes, or errors occur",
"author": "mohak34",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mohak34/opencode-notifier.git"
},
"homepage": "https://github.com/mohak34/opencode-notifier#readme",
"bugs": {
"url": "https://github.com/mohak34/opencode-notifier/issues"
},
"files": [
"dist",
"sounds",
"logos"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --external node-notifier",
"prepublishOnly": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"keywords": [
"opencode",
"opencode-plugin",
"notifications",
"sound",
"alerts"
],
"dependencies": {
"is-wsl": "^3.1.0",
"node-notifier": "^10.0.1"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.224",
"@types/node": "^22.0.0",
"@types/node-notifier": "^8.0.5",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
}
}