-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.27 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
50
51
52
{
"name": "opencode-telegram-bot-plugin",
"version": "1.2.0",
"description": "OpenCode plugin for Telegram notifications - get notified when tasks complete, respond to permission requests via Telegram",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"opencode",
"plugin",
"telegram",
"notification"
],
"author": "jshsakura",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/jshsakura/opencode-telegram-bot-plugin"
},
"homepage": "https://github.com/jshsakura/opencode-telegram-bot-plugin#readme",
"dependencies": {
"@opencode-ai/plugin": "^1.1.65",
"@opencode-ai/sdk": "^1.1.65"
},
"devDependencies": {
"@types/node": "^22.13.9",
"@vitest/coverage-v8": "^4.1.0",
"typescript": "^5.8.2",
"vitest": "^4.1.0"
}
}