@meetelise/chat 1.22.78 → 1.24.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/package.json +47 -41
- package/public/dist/index.js +397 -397
- package/public/dist/index.js.LICENSE.txt +0 -15
- package/src/WebComponent/Scheduler/tour-scheduler.ts +1 -1
- package/src/getAvailabilities.ts +1 -1
- package/src/types/rest-sdk.types.ts +13 -0
- package/src/utils.ts +0 -25
package/package.json
CHANGED
|
@@ -1,35 +1,63 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meetelise/chat",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.24.0",
|
|
4
4
|
"description": "",
|
|
5
|
-
"
|
|
5
|
+
"keywords": [],
|
|
6
|
+
"homepage": "https://github.com/MeetElise/chat-ui#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/MeetElise/chat-ui/issues"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/MeetElise/chat-ui.git"
|
|
13
|
+
},
|
|
14
|
+
"license": "ISC",
|
|
15
|
+
"author": "",
|
|
6
16
|
"type": "module",
|
|
17
|
+
"main": "public/dist/index.js",
|
|
7
18
|
"module": "public/dist/index.js",
|
|
8
19
|
"types": "public/dist/index.d.ts",
|
|
9
20
|
"scripts": {
|
|
10
|
-
"
|
|
11
|
-
"test": "npm run build; web-test-runner",
|
|
12
|
-
"test:watch": "web-test-runner --watch",
|
|
21
|
+
"analyze": "webpack-bundle-analyzer stats.json public/dist",
|
|
13
22
|
"build": "webpack --mode=production",
|
|
23
|
+
"build:analyze": "npm run build:stats && npm run analyze",
|
|
24
|
+
"build:stats": "webpack --mode=production --profile --json=stats.json",
|
|
25
|
+
"clean": "rimraf dist public/dist",
|
|
26
|
+
"postinstall": "sort-package-json",
|
|
14
27
|
"lint": "eslint .",
|
|
28
|
+
"prepare": "husky install",
|
|
15
29
|
"prepublishOnly": "npm run build",
|
|
16
|
-
"
|
|
30
|
+
"start": "webpack serve --mode=development --open",
|
|
31
|
+
"test": "npm run build; web-test-runner",
|
|
32
|
+
"test:watch": "web-test-runner --watch"
|
|
17
33
|
},
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
34
|
+
"lint-staged": {
|
|
35
|
+
"*.ts": "eslint --fix --max-warnings 0",
|
|
36
|
+
"**/*": "prettier --write --ignore-unknown"
|
|
21
37
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
38
|
+
"release": {
|
|
39
|
+
"branches": [
|
|
40
|
+
"main"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@meetelise/rest-sdk": "^0.0.161",
|
|
45
|
+
"@types/dompurify": "^3.0.5",
|
|
46
|
+
"@types/pubnub": "^7.2.1",
|
|
47
|
+
"axios": "^0.27.2",
|
|
48
|
+
"classnames": "^2.3.1",
|
|
49
|
+
"date-fns": "^2.28.0",
|
|
50
|
+
"dompurify": "^3.1.2",
|
|
51
|
+
"dotenv": "^16.0.1",
|
|
52
|
+
"lit": "^2.2.4",
|
|
53
|
+
"lodash": "^4.17.21",
|
|
54
|
+
"pubnub": "^7.2.2",
|
|
55
|
+
"talkjs": "^0.14.5",
|
|
56
|
+
"uuid": "^8.3.2"
|
|
27
57
|
},
|
|
28
|
-
"homepage": "https://github.com/MeetElise/chat-ui#readme",
|
|
29
58
|
"devDependencies": {
|
|
30
59
|
"@esm-bundle/chai": "^4.3.4-fix.0",
|
|
31
60
|
"@types/lodash": "^4.14.178",
|
|
32
|
-
"@types/react": "^17.0.38",
|
|
33
61
|
"@types/uuid": "^8.3.1",
|
|
34
62
|
"@typescript-eslint/eslint-plugin": "^4.5.0",
|
|
35
63
|
"@typescript-eslint/parser": "^4.5.0",
|
|
@@ -45,39 +73,17 @@
|
|
|
45
73
|
"husky": "^7.0.2",
|
|
46
74
|
"lint-staged": "^11.1.2",
|
|
47
75
|
"prettier": "^2.4.1",
|
|
76
|
+
"rimraf": "^6.0.1",
|
|
48
77
|
"semantic-release": "^18.0.0",
|
|
49
78
|
"sinon": "^11.1.2",
|
|
79
|
+
"sort-package-json": "^3.0.0",
|
|
50
80
|
"style-loader": "^3.3.1",
|
|
51
81
|
"ts-loader": "^9.3.1",
|
|
52
82
|
"typescript": "^4.6.4",
|
|
53
83
|
"typescript-plugin-css-modules": "^3.4.0",
|
|
54
84
|
"webpack": "^5.65.0",
|
|
85
|
+
"webpack-bundle-analyzer": "^4.10.2",
|
|
55
86
|
"webpack-cli": "^4.9.1",
|
|
56
87
|
"webpack-dev-server": "^4.7.2"
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@meetelise/rest-sdk": "^0.0.161",
|
|
60
|
-
"@types/dompurify": "^3.0.5",
|
|
61
|
-
"@types/pubnub": "^7.2.1",
|
|
62
|
-
"axios": "^0.27.2",
|
|
63
|
-
"classnames": "^2.3.1",
|
|
64
|
-
"date-fns": "^2.28.0",
|
|
65
|
-
"dompurify": "^3.1.2",
|
|
66
|
-
"dotenv": "^16.0.1",
|
|
67
|
-
"lit": "^2.2.4",
|
|
68
|
-
"lodash": "^4.17.21",
|
|
69
|
-
"pubnub": "^7.2.2",
|
|
70
|
-
"react": "^17.0.2",
|
|
71
|
-
"talkjs": "^0.14.5",
|
|
72
|
-
"uuid": "^8.3.2"
|
|
73
|
-
},
|
|
74
|
-
"lint-staged": {
|
|
75
|
-
"*.ts": "eslint --fix --max-warnings 0",
|
|
76
|
-
"**/*": "prettier --write --ignore-unknown"
|
|
77
|
-
},
|
|
78
|
-
"release": {
|
|
79
|
-
"branches": [
|
|
80
|
-
"main"
|
|
81
|
-
]
|
|
82
88
|
}
|
|
83
89
|
}
|