-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.04 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.04 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
{
"name": "@renjfk/opencode-notify",
"version": "0.1.0",
"description": "Attention notifications for OpenCode. Blinks Zellij tab, plays a sound, and posts a macOS desktop notification when a session goes idle, requests permission, or asks a question.",
"keywords": [
"ghostty",
"macos",
"notification",
"notify",
"opencode",
"plugin",
"terminal-notifier",
"zellij"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/renjfk/opencode-notify.git"
},
"files": [
"index.js",
"lib"
],
"type": "module",
"main": "index.js",
"exports": {
".": {
"import": "./index.js"
},
"./tui": {
"import": "./index.js"
}
},
"scripts": {
"lint": "npx oxlint .",
"fmt": "npx oxfmt --check .",
"fmt:fix": "npx oxfmt --write .",
"check": "npm run lint && npm run fmt",
"prepack": "npm run check"
},
"devDependencies": {
"oxfmt": "0.45.0",
"oxlint": "1.60.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
}
}