forked from JorgenVatle/chatwoot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 KB
/
package.json
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
{
"name": "@jrvidotti/chatwoot-sdk",
"version": "1.6.2",
"description": "SDK for JS/Typescript for Chatwoot.",
"repository": {
"type": "git",
"url": "https://github.com/vidz1979/chatwoot-sdk.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"format": "npm exec -- prettier --write ./src --loglevel warn",
"lint": "npm exec -- eslint ./src --ext .ts --fix",
"build": "npm exec -- tsc -b --clean && npm exec -- tsc --declaration",
"test": "echo \"Error: no test specified\" && exit 0",
"release": "npm exec -- release-it"
},
"keywords": [
"chatwoot"
],
"author": "Figuro <[email protected]> (https://figuro.la)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"dotenv": "^16.4.1",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"release-it": "^15.4.1",
"typescript": "^4.9.5"
},
"dependencies": {
"form-data": "^4.0.0",
"ky": "^1.2.0"
}
}