-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.25 KB
/
package.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": "@sillybit/opencode-plugin-everynotify",
"version": "0.5.0",
"description": "Multi-service notification plugin for opencode — Pushover, Telegram, Slack, Discord",
"author": "Sillybit <https://sillybit.io>",
"repository": {
"type": "git",
"url": "https://github.com/sillybit-io/opencode-plugin-everynotify.git"
},
"bugs": {
"url": "https://github.com/sillybit-io/opencode-plugin-everynotify/issues"
},
"homepage": "https://github.com/sillybit-io/opencode-plugin-everynotify#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node && tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"test": "bun test",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.1.53",
"@types/bun": "^1.3.8",
"@types/node": "^24.10.12",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.1.53"
},
"keywords": [
"opencode",
"plugin",
"notification",
"pushover",
"telegram",
"slack",
"discord"
],
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
}
}