-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
65 lines (65 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "react-live-chat-loader",
"version": "2.9.2",
"description": "Implement live chat in your react app without taking a performance hit.",
"main": "dist/index.js",
"module": "module/index.js",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"build": "npm run lint && tsc --emitDeclarationOnly && npm run build:cjs && npm run build:module",
"build:cjs": "BABEL_ENV=cjs babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"build:module": "BABEL_ENV=module babel src --out-dir module --extensions \".ts,.tsx\" --source-maps inline",
"dev": "tsc --noEmit --watch"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"keywords": [
"performance",
"react",
"chat",
"helpscout",
"intercom",
"drift",
"chatwoot",
"userlike",
"facebook messenger",
"messenger"
],
"author": "calibreapp.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/calibreapp/react-live-chat-loader.git"
},
"peerDependencies": {
"react": "^16.14.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/react": "^18.0.21",
"@types/requestidlecallback": "^0.3.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.7.5",
"babel-loader": "^9.1.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.25.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "3.4.1",
"ts-loader": "^9.4.1",
"typescript": "^5.0.4"
},
"files": [
"dist/*",
"module/*"
]
}