-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
216 lines (216 loc) · 6.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
{
"name": "peerjs",
"version": "1.5.4",
"keywords": [
"peerjs",
"webrtc",
"p2p",
"rtc"
],
"description": "PeerJS client",
"homepage": "https://peerjs.com",
"bugs": {
"url": "https://github.com/peers/peerjs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/peers/peerjs"
},
"license": "MIT",
"contributors": [
"Michelle Bu <[email protected]>",
"afrokick <[email protected]>",
"ericz <[email protected]>",
"Jairo <[email protected]>",
"Jonas Gloning <[email protected]>",
"Jairo Caro-Accino Viciana <[email protected]>",
"Carlos Caballero <[email protected]>",
"hc <[email protected]>",
"Muhammad Asif <[email protected]>",
"PrashoonB <[email protected]>",
"Harsh Bardhan Mishra <[email protected]>",
"akotynski <[email protected]>",
"lmb <[email protected]>",
"Jairooo <[email protected]>",
"Moritz Stückler <[email protected]>",
"Simon <[email protected]>",
"Denis Lukov <[email protected]>",
"Philipp Hancke <[email protected]>",
"Hans Oksendahl <[email protected]>",
"Jess <[email protected]>",
"khankuan <[email protected]>",
"DUODVK <[email protected]>",
"XiZhao <[email protected]>",
"Matthias Lohr <[email protected]>",
"=frank tree <[email protected]>",
"Andre Eckardt <[email protected]>",
"Chris Cowan <[email protected]>",
"Alex Chuev <[email protected]>",
"alxnull <[email protected]>",
"Yemel Jardi <[email protected]>",
"Ben Parnell <[email protected]>",
"Benny Lichtner <[email protected]>",
"fresheneesz <[email protected]>",
"chandika <[email protected]>",
"emersion <[email protected]>",
"Christopher Van <[email protected]>",
"eddieherm <[email protected]>",
"Eduardo Pinho <[email protected]>",
"Evandro Zanatta <[email protected]>",
"Gardner Bickford <[email protected]>",
"Gian Luca <[email protected]>",
"PatrickJS <[email protected]>",
"jonnyf <[email protected]>",
"Hizkia Felix <[email protected]>",
"Hristo Oskov <[email protected]>",
"Isaac Madwed <[email protected]>",
"Ilya Konanykhin <[email protected]>",
"jasonbarry <[email protected]>",
"Jonathan Burke <[email protected]>",
"Josh Hamit <[email protected]>",
"Jordan Austin <[email protected]>",
"Joel Wetzell <[email protected]>",
"xizhao <[email protected]>",
"Alberto Torres <[email protected]>",
"Jonathan Mayol <[email protected]>",
"Jefferson Felix <[email protected]>",
"Rolf Erik Lekang <[email protected]>",
"Kevin Mai-Husan Chia <[email protected]>",
"Pepijn de Vos <[email protected]>",
"JooYoung <[email protected]>",
"Tobias Speicher <[email protected]>",
"Steve Blaurock <[email protected]>",
"Kyrylo Shegeda <[email protected]>",
"Diwank Singh Tomer <[email protected]>",
"Sören Balko <[email protected]>",
"Arpit Solanki <[email protected]>",
"Yuki Ito <[email protected]>",
"Artur Zayats <[email protected]>"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/peer"
},
"files": [
"dist/*"
],
"sideEffects": [
"lib/global.ts",
"lib/supports.ts"
],
"main": "dist/bundler.cjs",
"module": "dist/bundler.mjs",
"browser-minified": "dist/peerjs.min.js",
"browser-unminified": "dist/peerjs.js",
"browser-minified-msgpack": "dist/serializer.msgpack.mjs",
"types": "dist/types.d.ts",
"engines": {
"node": ">= 14"
},
"targets": {
"types": {
"source": "lib/exports.ts"
},
"main": {
"source": "lib/exports.ts",
"sourceMap": {
"inlineSources": true
}
},
"module": {
"source": "lib/exports.ts",
"includeNodeModules": [
"eventemitter3"
],
"sourceMap": {
"inlineSources": true
}
},
"browser-minified": {
"context": "browser",
"outputFormat": "global",
"optimize": true,
"engines": {
"browsers": "chrome >= 83, edge >= 83, firefox >= 80, safari >= 15"
},
"source": "lib/global.ts"
},
"browser-unminified": {
"context": "browser",
"outputFormat": "global",
"optimize": false,
"engines": {
"browsers": "chrome >= 83, edge >= 83, firefox >= 80, safari >= 15"
},
"source": "lib/global.ts"
},
"browser-minified-msgpack": {
"context": "browser",
"outputFormat": "esmodule",
"isLibrary": true,
"optimize": true,
"engines": {
"browsers": "chrome >= 83, edge >= 83, firefox >= 102, safari >= 15"
},
"source": "lib/dataconnection/StreamConnection/MsgPack.ts"
}
},
"scripts": {
"contributors": "git-authors-cli --print=false && prettier --write package.json && git add package.json package-lock.json && git commit -m \"chore(contributors): update and sort contributors list\"",
"check": "tsc --noEmit && tsc -p e2e/tsconfig.json --noEmit",
"watch": "parcel watch",
"build": "rm -rf dist && parcel build",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage --collectCoverageFrom=\"./lib/**\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"semantic-release": "semantic-release",
"e2e": "wdio run e2e/wdio.local.conf.ts",
"e2e:bstack": "wdio run e2e/wdio.bstack.conf.ts"
},
"devDependencies": {
"@parcel/config-default": "^2.9.3",
"@parcel/packager-ts": "^2.9.3",
"@parcel/transformer-typescript-tsc": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.3.27",
"@swc/jest": "^0.2.24",
"@types/jasmine": "^4.3.4",
"@wdio/browserstack-service": "^8.11.2",
"@wdio/cli": "^8.11.2",
"@wdio/globals": "^8.11.2",
"@wdio/jasmine-framework": "^8.11.2",
"@wdio/local-runner": "^8.11.2",
"@wdio/spec-reporter": "^8.11.2",
"@wdio/types": "^8.10.4",
"http-server": "^14.1.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mock-socket": "^9.0.0",
"parcel": "^2.9.3",
"prettier": "^3.0.0",
"semantic-release": "^23.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
"wdio-geckodriver-service": "^5.0.1"
},
"dependencies": {
"@msgpack/msgpack": "^2.8.0",
"eventemitter3": "^4.0.7",
"peerjs-js-binarypack": "^2.1.0",
"webrtc-adapter": "^9.0.0"
},
"alias": {
"process": false,
"buffer": false
}
}