bitmax-crm-widget 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +415 -0
- package/dist/chat-widget.min.js +4 -0
- package/dist/chat-widget.min.js.map +1 -0
- package/dist/index.esm.js +4 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bitmax-crm-widget",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Universal Chat CRM Widget - Works on any website (React, Vue, HTML, WordPress, etc.)",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"README.md"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rollup -c",
|
|
13
|
+
"build:watch": "rollup -c -w",
|
|
14
|
+
"dev": "npm run build:watch",
|
|
15
|
+
"prepublishOnly": "npm run build"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"chat",
|
|
19
|
+
"widget",
|
|
20
|
+
"crm",
|
|
21
|
+
"customer-support",
|
|
22
|
+
"live-chat",
|
|
23
|
+
"react",
|
|
24
|
+
"vue",
|
|
25
|
+
"angular",
|
|
26
|
+
"websocket",
|
|
27
|
+
"socket.io"
|
|
28
|
+
],
|
|
29
|
+
"author": "Chat CRM",
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/your-org/chat-crm-widget"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"react": ">=16.8.0",
|
|
37
|
+
"react-dom": ">=16.8.0"
|
|
38
|
+
},
|
|
39
|
+
"peerDependenciesMeta": {
|
|
40
|
+
"react": {
|
|
41
|
+
"optional": true
|
|
42
|
+
},
|
|
43
|
+
"react-dom": {
|
|
44
|
+
"optional": true
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"socket.io-client": "^4.7.2",
|
|
49
|
+
"axios": "^1.6.0"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
53
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
54
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
55
|
+
"@rollup/plugin-replace": "^5.0.5",
|
|
56
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
57
|
+
"@babel/core": "^7.23.6",
|
|
58
|
+
"@babel/preset-env": "^7.23.6",
|
|
59
|
+
"@babel/preset-react": "^7.23.3",
|
|
60
|
+
"rollup": "^4.9.0",
|
|
61
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
62
|
+
"rollup-plugin-postcss": "^4.0.2"
|
|
63
|
+
}
|
|
64
|
+
}
|