-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "rtc-signaling",
"version": "1.0.0",
"description": "WebRTC signaling over WebSocket",
"main": "dist/index.js",
"browser": "dist/index.global.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsup src/index.ts --watch",
"build": "tsup",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"webrtc",
"signaling",
"websocket",
"typescript"
],
"author": "Amin Yazdanpanah",
"website": "https://www.aminyazdanpanah.com",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/preset-env": "^7.27.2",
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^29.5.14",
"@types/ws": "^8.18.1",
"jest": "^29.7.0",
"ts-jest": "^29.3.3",
"tsup": "^7.2.0",
"typescript": "^5.8.3"
},
"dependencies": {
"protobufjs": "^7.5.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phP-WebRTC/signaling-js-sdk.git"
},
"bugs": {
"url": "https://github.com/phP-WebRTC/signaling-js-sdk/issues"
},
"homepage": "https://github.com/phP-WebRTC/signaling-js-sdk#readme"
}