-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "@networkoptix/webrtc-stream-manager",
"version": "0.1.29",
"description": "WebRTC stream manager for Nx Meta VMS cameras",
"author": "Network Optix",
"license": "MPL-2.0",
"type": "module",
"sideEffects": false,
"main": "dist/lib/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/lib/index.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/networkoptix/web_packages",
"directory": "packages/webrtc-stream-manager-v2"
},
"homepage": "https://github.com/networkoptix/web_packages/tree/master/packages/webrtc-stream-manager-v2",
"bugs": {
"url": "https://github.com/networkoptix/web_packages/issues"
},
"keywords": ["networkoptix", "nx-meta", "webrtc", "streaming", "vms", "video"],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc --outDir dist/lib --declarationDir dist/types --declaration",
"test": "vitest run",
"test:watch": "vitest",
"ci:check": "vitest run",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"rxjs": "7.8.1",
"webrtc-issue-detector": "1.10.0"
},
"devDependencies": {
"vitest": "^2.1.0",
"@vitest/coverage-v8": "^2.1.0",
"jsdom": "^25.0.0"
}
}