opencode-vibe-webhook 1.0.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/README.md +182 -0
- package/dist/index.d.ts +58 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +13050 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "opencode-vibe-webhook",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "OpenCode plugin for VibeControls notifications - companion to @burdenoff/vibe-plugin-notify",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Vignesh T.V",
|
|
7
|
+
"email": "vignesh@burdenoff.com",
|
|
8
|
+
"url": "https://github.com/tvvignesh"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"keywords": [
|
|
12
|
+
"opencode",
|
|
13
|
+
"opencode-plugin",
|
|
14
|
+
"vibecontrols",
|
|
15
|
+
"vibe-plugin-notify",
|
|
16
|
+
"webhook",
|
|
17
|
+
"notification",
|
|
18
|
+
"slack",
|
|
19
|
+
"discord",
|
|
20
|
+
"task-completion"
|
|
21
|
+
],
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "dist/index.js",
|
|
24
|
+
"types": "dist/index.d.ts",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js"
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"dist"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm && tsc --emitDeclarationOnly --declaration --outDir dist",
|
|
36
|
+
"dev": "bun run build --watch",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"lint": "eslint ./src",
|
|
39
|
+
"format": "prettier --write .",
|
|
40
|
+
"format:check": "prettier --check .",
|
|
41
|
+
"clean": "rm -rf dist",
|
|
42
|
+
"prepublishOnly": "bun run build",
|
|
43
|
+
"sanity": "bun run format:check && bun run lint && bun run typecheck && bun run build"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@opencode-ai/plugin": "^1.2.15"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@eslint/js": "^10.0.0",
|
|
50
|
+
"@types/bun": "^1.2.0",
|
|
51
|
+
"@types/node": "^22.0.0",
|
|
52
|
+
"eslint": "^9.0.0",
|
|
53
|
+
"globals": "^17.0.0",
|
|
54
|
+
"prettier": "^3.0.0",
|
|
55
|
+
"typescript": "^5.8.0",
|
|
56
|
+
"typescript-eslint": "^8.0.0"
|
|
57
|
+
},
|
|
58
|
+
"engines": {
|
|
59
|
+
"node": ">=18.0.0",
|
|
60
|
+
"bun": ">=1.0.0"
|
|
61
|
+
},
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/algoshred/opencode-vibe-webhook.git"
|
|
65
|
+
},
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/algoshred/opencode-vibe-webhook/issues"
|
|
68
|
+
},
|
|
69
|
+
"homepage": "https://github.com/algoshred/opencode-vibe-webhook#readme"
|
|
70
|
+
}
|