-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@techteamer/janus-api",
"version": "7.0.1-beta.1",
"description": "Janus WebRTC-Gateway API",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"test": "eslint .",
"build-test": "node ./test/buildtest.js",
"build": "rm -fr dist/* && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup.sh"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechTeamer/janus-api.git"
},
"keywords": [
"janus",
"webrtc"
],
"author": "TechTeamer",
"license": "MIT",
"bugs": {
"url": "https://github.com/TechTeamer/janus-api/issues"
},
"type": "module",
"homepage": "https://github.com/TechTeamer/janus-api#readme",
"dependencies": {
"isomorphic-ws": "^4.0.1",
"sdp": "^3.0.1",
"uuid": "^8.2.0",
"ws": "^8.2.0"
},
"devDependencies": {
"@types/node": "^20.12.12",
"esbuild": "^0.21.3",
"eslint": "^8.8.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"http-server": "^14.1.0",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0",
"webrtc-adapter": "^8.1.1"
}
}