-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
79 lines (79 loc) · 1.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@tawk.to/tawk-messenger-react",
"version": "2.0.2",
"description": "Official React plugin for Tawk messenger",
"keywords": [
"react",
"reactjs",
"next",
"react-plugin",
"tawk",
"next-plugin",
"tawkto",
"react-tawk",
"next-tawk"
],
"repository": {
"type": "git",
"url": "https://github.com/tawk/tawk-messenger-react.git",
"repository": "tawk/tawk-messenger-react"
},
"homepage": "https://github.com/tawk/tawk-messenger-react#readme",
"bugs": {
"url": "https://github.com/tawk/tawk-messenger-react/issues",
"email": "[email protected]"
},
"license": "Apache-2.0",
"author": "Jerald Austero <[email protected]> (https://www.tawk.to)",
"files": [
"dist"
],
"main": "./dist/tawk-messenger-react.umd.js",
"module": "./dist/tawk-messenger-react.es.js",
"exports": {
".": {
"import": "./dist/tawk-messenger-react.es.js",
"require": "./dist/tawk-messenger-react.umd.js"
}
},
"scripts": {
"build": "vite build",
"test": "react-scripts test",
"lint": "eslint src/**/*.js"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.1.1",
"@vitejs/plugin-react": "^1.3.2",
"babel-eslint": "^10.1.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-react": "^7.29.4",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-scripts": "^5.0.1",
"vite": "^2.9.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}