forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 941 Bytes
/
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": "@dogehouse/kebab",
"author": "Ilya Maximov <mail@overlisted.net> (https://overlisted.net)",
"bugs": "https://github.com/benawad/dogehouse/issues",
"version": "0.2.0",
"license": "MIT",
"keywords": [
"dogehouse"
],
"description": "Client-side implementation of DogeHouse API.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src/",
"postinstall": "npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"isomorphic-ws": "^4.0.1",
"mediasoup-client": "^3.6.29",
"reconnecting-websocket": "^4.4.0",
"uuid": "^8.3.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"typescript": "^4.2.3"
}
}