-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.08 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": "@openacp/slack-adapter",
"version": "2026.525.5",
"description": "Slack messaging platform adapter plugin for OpenACP",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"openacp",
"openacp-plugin",
"slack",
"adapter"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Open-ACP/slack-adapter"
},
"peerDependencies": {
"@openacp/plugin-sdk": ">=2026.327.0"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"@openacp/cli": "^2026.331.1",
"@slack/bolt": "^4.6.0",
"@slack/web-api": "^7.15.0",
"nanoid": "^5.0.0",
"p-queue": "^9.1.0",
"zod": "^3.25.0"
},
"packageManager": "pnpm@9.15.0",
"devDependencies": {
"@openacp/plugin-sdk": "^2026.331.1",
"@types/node": "^25.5.0",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
}
}