@webex/cc-widgets 1.28.0-ccwidgets.4
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 +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@webex/cc-widgets",
|
|
3
|
+
"description": "Webex Contact Center Widgets",
|
|
4
|
+
"version": "1.28.0-ccwidgets.4",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/",
|
|
11
|
+
"package.json"
|
|
12
|
+
],
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./dist/index.js",
|
|
15
|
+
"./wc": "./dist/wc.js"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "yarn run -T tsc",
|
|
19
|
+
"build:src": "webpack && yarn run build",
|
|
20
|
+
"build:watch": "webpack --watch",
|
|
21
|
+
"test:unit": "jest"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@r2wc/react-to-web-component": "2.0.3",
|
|
25
|
+
"@webex/cc-station-login": "1.28.0-ccwidgets.4",
|
|
26
|
+
"@webex/cc-store": "1.28.0-ccwidgets.4",
|
|
27
|
+
"@webex/cc-user-state": "1.28.0-ccwidgets.4"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@babel/core": "7.25.2",
|
|
31
|
+
"@babel/preset-env": "7.25.4",
|
|
32
|
+
"@babel/preset-react": "7.24.7",
|
|
33
|
+
"@babel/preset-typescript": "7.25.9",
|
|
34
|
+
"@testing-library/dom": "10.4.0",
|
|
35
|
+
"@testing-library/jest-dom": "6.6.2",
|
|
36
|
+
"@testing-library/react": "16.0.1",
|
|
37
|
+
"@types/jest": "29.5.14",
|
|
38
|
+
"@types/react-test-renderer": "18",
|
|
39
|
+
"babel-jest": "29.7.0",
|
|
40
|
+
"babel-loader": "9.2.1",
|
|
41
|
+
"crypto-browserify": "^3.12.1",
|
|
42
|
+
"file-loader": "6.2.0",
|
|
43
|
+
"jest": "29.7.0",
|
|
44
|
+
"jest-environment-jsdom": "29.7.0",
|
|
45
|
+
"mobx-react": "9.1.1",
|
|
46
|
+
"os-browserify": "^0.3.0",
|
|
47
|
+
"process": "^0.11.10",
|
|
48
|
+
"querystring-es3": "^0.2.1",
|
|
49
|
+
"react": "18.3.1",
|
|
50
|
+
"react-dom": "18.3.1",
|
|
51
|
+
"stream-browserify": "^3.0.0",
|
|
52
|
+
"ts-loader": "9.5.1",
|
|
53
|
+
"typescript": "5.6.3",
|
|
54
|
+
"url": "^0.11.4",
|
|
55
|
+
"util": "^0.12.5",
|
|
56
|
+
"vm-browserify": "^1.1.2",
|
|
57
|
+
"webpack": "5.94.0",
|
|
58
|
+
"webpack-cli": "5.1.4",
|
|
59
|
+
"webpack-merge": "6.0.1"
|
|
60
|
+
},
|
|
61
|
+
"jest": {
|
|
62
|
+
"testEnvironment": "jsdom",
|
|
63
|
+
"//": "We can remove this when we have tests",
|
|
64
|
+
"passWithNoTests": true,
|
|
65
|
+
"testMatch": [
|
|
66
|
+
"**/tests/**/*.ts",
|
|
67
|
+
"**/tests/**/*.tsx"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
"stableVersion": "1.0.0"
|
|
71
|
+
}
|