-
-
Notifications
You must be signed in to change notification settings - Fork 670
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 719 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 719 Bytes
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
{
"name": "@open-wa/integration-chatwoot",
"version": "5.0.0-alpha.3",
"description": "Chatwoot integration plugin for open-wa",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.mts"
}
},
"scripts": {
"build": "tsdown src/index.ts --format esm --dts",
"dev": "tsdown src/index.ts --format esm --dts --watch",
"lint": "oxlint src",
"clean": "rimraf dist"
},
"dependencies": {
"@open-wa/plugin-sdk": "workspace:*",
"hono": "catalog:"
},
"devDependencies": {
"@open-wa/logger": "workspace:*",
"@types/node": "catalog:",
"typescript": "catalog:"
},
"publishConfig": {
"access": "public"
}
}