call-control-sdk 6.1.0 → 6.1.1

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.
Files changed (1) hide show
  1. package/package.json +88 -88
package/package.json CHANGED
@@ -1,90 +1,90 @@
1
1
  {
2
- "name": "call-control-sdk",
3
- "description": "Call Control SDK for Web RTC",
4
- "version": "6.1.0",
5
- "author": "achala IT",
6
- "license": "MIT",
7
- "main": "./dist/index.js",
8
- "module": "./dist/index.mjs",
9
- "types": "./dist/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "types": "./dist/index.d.ts",
13
- "import": "./dist/index.mjs",
14
- "require": "./dist/index.js"
15
- }
16
- },
17
- "files": [
18
- "dist"
19
- ],
20
- "keywords": [
21
- "webRTC",
22
- "call-control",
23
- "webRTC-sdk",
24
- "javascript",
25
- "call-control-sdk",
26
- "call-control-sdk-for-webRTC",
27
- "softphone",
28
- "softphone-sdk",
29
- "softphone-sdk-for-webRTC",
30
- "softphone-sdk-for-web",
31
- "call-control-sdk-for-web",
32
- "call-control-sdk-for-webRTC"
33
- ],
34
- "scripts": {
35
- "build": "tsup call-control-sdk/index.ts --format esm,cjs --dts --sourcemap --minify --clean --tsconfig tsconfig.build.json",
36
- "lint": "eslint .",
37
- "format": "prettier --write .",
38
- "prepublishOnly": "npm run build"
39
- },
40
- "dependencies": {
41
- "@emotion/react": "^11.14.0",
42
- "@emotion/styled": "^11.14.1",
43
- "@mui/icons-material": "^7.3.1",
44
- "@mui/material": "^7.3.1",
45
- "axios": "^1.11.0"
46
- },
47
- "peerDependencies": {
48
- "@emotion/react": ">=11.0.0",
49
- "@emotion/styled": ">=11.0.0",
50
- "@mui/icons-material": ">=5.0.0",
51
- "@mui/material": ">=5.0.0",
52
- "axios": ">=1.0.0",
53
- "react": ">=16.0.0",
54
- "react-dom": ">=16.0.0"
55
- },
56
- "peerDependenciesMeta": {
57
- "@emotion/react": {
58
- "optional": true
59
- },
60
- "@emotion/styled": {
61
- "optional": true
62
- },
63
- "@mui/icons-material": {
64
- "optional": true
65
- },
66
- "@mui/material": {
67
- "optional": true
68
- },
69
- "axios": {
70
- "optional": true
71
- },
72
- "react": {
73
- "optional": false
74
- },
75
- "react-dom": {
76
- "optional": false
77
- }
78
- },
79
- "devDependencies": {
80
- "typescript": "^5.0.0",
81
- "tsup": "^8.5.0",
82
- "vite": "^5.0.0",
83
- "@types/react": "^18.0.0",
84
- "@types/react-dom": "^18.0.0",
85
- "eslint": "^8.0.0",
86
- "prettier": "^3.0.0",
87
- "react": "^19.1.1",
88
- "react-dom": "^19.1.1"
89
- }
2
+ "name": "call-control-sdk",
3
+ "description": "Call Control SDK for Web RTC",
4
+ "version": "6.1.1",
5
+ "author": "achala IT",
6
+ "license": "MIT",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.mjs",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.mjs",
14
+ "require": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "keywords": [
21
+ "webRTC",
22
+ "call-control",
23
+ "webRTC-sdk",
24
+ "javascript",
25
+ "call-control-sdk",
26
+ "call-control-sdk-for-webRTC",
27
+ "softphone",
28
+ "softphone-sdk",
29
+ "softphone-sdk-for-webRTC",
30
+ "softphone-sdk-for-web",
31
+ "call-control-sdk-for-web",
32
+ "call-control-sdk-for-webRTC"
33
+ ],
34
+ "scripts": {
35
+ "build": "tsup call-control-sdk/index.ts --format esm,cjs --dts --sourcemap --minify --clean --tsconfig tsconfig.build.json",
36
+ "lint": "eslint .",
37
+ "format": "prettier --write .",
38
+ "prepublishOnly": "npm run build"
39
+ },
40
+ "dependencies": {
41
+ "@emotion/react": ">=11.0.0",
42
+ "@emotion/styled": ">=11.0.0",
43
+ "@mui/icons-material": ">=5.0.0",
44
+ "@mui/material": ">=5.0.0",
45
+ "axios": ">=1.0.0"
46
+ },
47
+ "peerDependencies": {
48
+ "@emotion/react": ">=11.0.0",
49
+ "@emotion/styled": ">=11.0.0",
50
+ "@mui/icons-material": ">=5.0.0",
51
+ "@mui/material": ">=5.0.0",
52
+ "axios": ">=1.0.0",
53
+ "react": ">=16.0.0",
54
+ "react-dom": ">=16.0.0"
55
+ },
56
+ "peerDependenciesMeta": {
57
+ "@emotion/react": {
58
+ "optional": true
59
+ },
60
+ "@emotion/styled": {
61
+ "optional": true
62
+ },
63
+ "@mui/icons-material": {
64
+ "optional": true
65
+ },
66
+ "@mui/material": {
67
+ "optional": true
68
+ },
69
+ "axios": {
70
+ "optional": true
71
+ },
72
+ "react": {
73
+ "optional": false
74
+ },
75
+ "react-dom": {
76
+ "optional": false
77
+ }
78
+ },
79
+ "devDependencies": {
80
+ "@types/react": "^18.0.0",
81
+ "@types/react-dom": "^18.0.0",
82
+ "eslint": "^8.0.0",
83
+ "prettier": "^3.0.0",
84
+ "react": "^19.1.1",
85
+ "react-dom": "^19.1.1",
86
+ "tsup": "^8.5.0",
87
+ "typescript": "^5.0.0",
88
+ "vite": "^5.0.0"
89
+ }
90
90
  }