ahs-cti 0.0.2-beta.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.
package/package.json ADDED
@@ -0,0 +1,103 @@
1
+ {
2
+ "name": "ahs-cti",
3
+ "description": "Call Control SDK for Web RTC",
4
+ "version": "0.0.2-beta.1",
5
+ "author": "CTI SDK Team",
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
+ "README.md",
20
+ "LICENSE",
21
+ "LICENSE-ACHALA"
22
+ ],
23
+ "keywords": [
24
+ "webRTC",
25
+ "call-control",
26
+ "webRTC-sdk",
27
+ "javascript",
28
+ "call-control-sdk",
29
+ "call-control-sdk-for-webRTC",
30
+ "softphone",
31
+ "softphone-sdk",
32
+ "softphone-sdk-for-webRTC",
33
+ "softphone-sdk-for-web",
34
+ "call-control-sdk-for-web",
35
+ "call-control-sdk-for-webRTC"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsup --config tsup.config.ts",
39
+ "build:dev": "tsup --config tsup.config.ts --no-minify",
40
+ "lint": "eslint .",
41
+ "format": "prettier --write .",
42
+ "prepublishOnly": "npm run build",
43
+ "version:prerelease": "npm version prerelease --preid=beta --no-git-tag-version",
44
+ "version:uat": "npm version prerelease --preid=uat --no-git-tag-version",
45
+ "publish:beta": "npm run build:dev && npm publish --tag beta --access public",
46
+ "publish:uat": "npm run build:dev && npm publish --tag uat --access public"
47
+ },
48
+ "dependencies": {
49
+ "@emotion/react": ">=11.0.0",
50
+ "@emotion/styled": ">=11.0.0",
51
+ "@mui/icons-material": ">=5.0.0",
52
+ "@mui/material": ">=5.0.0",
53
+ "axios": ">=1.0.0",
54
+ "@react-solutions/vault": ">=0.0.5"
55
+ },
56
+ "peerDependencies": {
57
+ "@emotion/react": ">=11.0.0",
58
+ "@emotion/styled": ">=11.0.0",
59
+ "@mui/icons-material": ">=5.0.0",
60
+ "@mui/material": ">=5.0.0",
61
+ "axios": ">=1.0.0",
62
+ "react": ">=16.0.0",
63
+ "@react-solutions/vault": ">=0.0.5",
64
+ "react-dom": ">=16.0.0"
65
+ },
66
+ "peerDependenciesMeta": {
67
+ "@emotion/react": {
68
+ "optional": true
69
+ },
70
+ "@emotion/styled": {
71
+ "optional": true
72
+ },
73
+ "@mui/icons-material": {
74
+ "optional": true
75
+ },
76
+ "@mui/material": {
77
+ "optional": true
78
+ },
79
+ "axios": {
80
+ "optional": true
81
+ },
82
+ "react": {
83
+ "optional": false
84
+ },
85
+ "react-dom": {
86
+ "optional": false
87
+ },
88
+ "@react-solutions/vault": {
89
+ "optional": false
90
+ }
91
+ },
92
+ "devDependencies": {
93
+ "@types/node": "^22.19.1",
94
+ "@types/react": "^18.0.0",
95
+ "@types/react-dom": "^18.0.0",
96
+ "eslint": "^8.0.0",
97
+ "prettier": "^3.0.0",
98
+ "react": "^19.1.1",
99
+ "react-dom": "^19.1.1",
100
+ "tsup": "^8.5.0",
101
+ "typescript": "^5.0.0"
102
+ }
103
+ }