-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.01 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
{
"name": "opencode-slack-agent",
"version": "3.5.4",
"description": "OpenCode plugin — Slack DM & mention agent via Socket Mode",
"type": "module",
"main": "dist/plugin.js",
"exports": {
".": {
"types": "./dist/plugin.d.ts",
"import": "./dist/plugin.js",
"default": "./dist/plugin.js"
},
"./server": "./dist/plugin.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leecoder/opencode-slack-agent.git"
},
"keywords": [
"opencode",
"plugin",
"slack",
"agent",
"socket-mode"
],
"license": "MIT",
"dependencies": {
"@slack/socket-mode": "^2.0.3",
"@slack/web-api": "^7.9.1",
"better-sqlite3": "^11.9.1"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.13",
"@opencode-ai/sdk": "^1.17.13",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.15.0",
"tsup": "^8.5.1",
"typescript": "^5.8.3"
}
}