-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 KB
/
package.json
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
{
"name": "webrtc-group-chat-client",
"version": "0.0.1-beta.3",
"description": "A browser side library, using W3C WebRTC API and simple mesh architecture, providing only data-layer service, aims to help anyone who wants to build WebRTC group chatting related web apps",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"version": "tsc && git add .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myan0020/webrtc-group-chat-client.git"
},
"keywords": [
"webrtc"
],
"author": "MingDongShenSen",
"license": "ISC",
"bugs": {
"url": "https://github.com/myan0020/webrtc-group-chat-client/issues"
},
"files": [
"lib/**/*"
],
"exports": {
".": "./lib/index.js"
},
"homepage": "https://github.com/myan0020/webrtc-group-chat-client#readme",
"devDependencies": {
"typescript": "^4.9.5"
},
"dependencies": {
"reconnecting-alive-socket": "^0.0.1-beta.2"
}
}