@cognigy/click-to-call-sdk 0.0.7

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.
Binary file
Binary file
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@cognigy/click-to-call-sdk",
3
+ "version": "0.0.7",
4
+ "description": "A standalone WebRTC SDK for SIP-based voice calling with custom audio support",
5
+ "main": "dist/webRTCSDK.cjs.js",
6
+ "module": "dist/webRTCSDK.es.js",
7
+ "browser": "dist/webRTCSDK.js",
8
+ "types": "dist/index.d.ts",
9
+ "type": "module",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/webRTCSDK.es.js",
14
+ "require": "./dist/webRTCSDK.cjs.js",
15
+ "default": "./dist/webRTCSDK.es.js"
16
+ }
17
+ },
18
+ "scripts": {
19
+ "build": "rm -rf dist && vite build",
20
+ "dev": "NODE_ENV=development vite build --mode development --watch & NODE_ENV=development vite --mode development",
21
+ "test": "vitest",
22
+ "test:run": "vitest run",
23
+ "test:coverage": "vitest run --coverage",
24
+ "test:ui": "vitest --ui",
25
+ "clean": "rm -rf dist coverage",
26
+ "typecheck": "tsc --noEmit",
27
+ "lint": "biome lint --write",
28
+ "prepare": "husky"
29
+ },
30
+ "keywords": [
31
+ "webrtc",
32
+ "sip",
33
+ "voip",
34
+ "calling",
35
+ "audio",
36
+ "sdk",
37
+ "click-to-call"
38
+ ],
39
+ "author": "Cognigy",
40
+ "license": "MIT",
41
+ "dependencies": {
42
+ "events": "^3.3.0",
43
+ "jssip": "^3.13.5"
44
+ },
45
+ "devDependencies": {
46
+ "@biomejs/biome": "^2.4.4",
47
+ "@commitlint/cli": "^20.5.0",
48
+ "@commitlint/config-conventional": "^20.5.0",
49
+ "@types/node": "^25.3.0",
50
+ "@vitest/coverage-v8": "^4.0.18",
51
+ "@vitest/ui": "^4.0.18",
52
+ "husky": "^9.1.7",
53
+ "jsdom": "^28.1.0",
54
+ "terser": "^5.46.0",
55
+ "typescript": "^5.9.3",
56
+ "vite": "^7.3.1",
57
+ "vite-bundle-analyzer": "^1.3.6",
58
+ "vite-plugin-compression": "^0.5.1",
59
+ "vite-plugin-dts": "^4.5.4",
60
+ "vitest": "^4.0.18"
61
+ },
62
+ "files": [
63
+ "dist/**/*",
64
+ "README.md"
65
+ ],
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "https://github.com/Cognigy/click-to-call-sdk.git"
69
+ },
70
+ "engines": {
71
+ "node": ">=16.0.0"
72
+ }
73
+ }