@callpromn/rtc-sdk 0.0.3

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,57 @@
1
+ {
2
+ "name": "@callpromn/rtc-sdk",
3
+ "version": "0.0.3",
4
+ "main": "dist/index.js",
5
+ "module": "dist/index.mjs",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1",
9
+ "lint": "eslint 'src/**/*.{ts,tsx}'",
10
+ "lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
11
+ "`format`": "prettier --write 'src/**/*.{ts,tsx,json,md}'",
12
+ "build": "tsup",
13
+ "pk": "sudo npm run build && sudo npm link",
14
+ "pack:check": "npm pack && tar -tzf $(ls -t *.tgz | head -1)",
15
+ "clean": "rimraf dist"
16
+ },
17
+ "exports": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.mjs",
20
+ "require": "./dist/index.js"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "author": "CallPro LLC",
28
+ "license": "MIT",
29
+ "description": "CallPro SDK for Web",
30
+ "devDependencies": {
31
+ "@types/js-cookie": "^2.2.7",
32
+ "@types/node": "^24.1.0",
33
+ "@types/random-string": "0.0.28",
34
+ "@types/retry": "^0.12.5",
35
+ "@types/sdp-transform": "^2.4.9",
36
+ "@typescript-eslint/eslint-plugin": "^8.38.0",
37
+ "@typescript-eslint/parser": "^8.38.0",
38
+ "eslint": "^9.32.0",
39
+ "eslint-config-prettier": "^10.1.8",
40
+ "eslint-plugin-prettier": "^5.5.3",
41
+ "prettier": "^3.6.2",
42
+ "typescript": "^5.8.3",
43
+ "rimraf": "^6.0.1",
44
+ "tsup": "^8.5.0"
45
+ },
46
+ "dependencies": {
47
+ "awaitqueue": "^2.3.3",
48
+ "bowser": "^2.11.0",
49
+ "h264-profile-level-id": "^2.0.0",
50
+ "js-cookie": "^2.2.1",
51
+ "retry": "^0.13.1",
52
+ "sdp-transform": "^2.14.2",
53
+ "socket.io-client": "^4.8.1",
54
+ "uuid": "^11.1.0",
55
+ "websocket": "^1.0.35"
56
+ }
57
+ }