forked from figurolatam/chatwoot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "@figuro/chatwoot-sdk",
"version": "1.1.16",
"description": "SDK for JS/Typescript for Chatwoot.",
"repository": {
"type": "git",
"url": "https://github.com/figurolatam/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 1",
"release": "npm exec -- release-it"
},
"keywords": [
"chatwoot"
],
"author": "Figuro <engineering@figuro.la> (https://figuro.la)",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"prettier": "^2.7.1",
"release-it": "^15.4.1",
"typescript": "^4.8.3"
},
"dependencies": {
"axios": "^0.27.2"
}
}