forked from WonderInventions/node-webrtc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@roamhq/wrtc",
"description": "Standards-compliant WebRTC implementation for Node",
"keywords": [
"webrtc",
"p2p",
"peer"
],
"version": "0.9.1",
"author": "Alan K <ack@modeswitch.org> (http://blog.modeswitch.org)",
"homepage": "https://github.com/WonderInventions/node-webrtc",
"bugs": "https://github.com/WonderInventions/node-webrtc/issues",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/WonderInventions/node-webrtc.git"
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"browser": "lib/browser.js",
"files": [
"AUTHORS",
"CHANGELOG.md",
"lib",
"types"
],
"optionalDependencies": {
"@roamhq/wrtc-darwin-arm64": "0.9.1",
"@roamhq/wrtc-darwin-x64": "0.9.1",
"@roamhq/wrtc-linux-arm64": "0.9.1",
"@roamhq/wrtc-linux-x64": "0.9.1",
"@roamhq/wrtc-win32-x64": "0.9.1",
"domexception": "^4.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@fidm/x509": "^1.2.1",
"cmake-js": "^7.3.0",
"cross-env": "^5.1.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"node-addon-api": "^7.0.0",
"patch-package": "^8.0.0",
"prettier": "^3.4.2",
"recursive-copy": "^2.0.14",
"simple-peer": "~9.7.0",
"tape": "^5.6.1",
"temp": "^0.9.4"
},
"scripts": {
"patch": "patch-package --error-on-warn",
"build": "node scripts/build-from-source.js",
"make-prebuilt": "node scripts/make-prebuilt.js",
"install-example": "node scripts/install-example.js",
"lint": "eslint lib/*.js lib/**/*.js test/*.js test/**/*.js scripts/*.js",
"test": "node --expose-gc test/all.js",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write",
"*.{cc,h}": "clang-format -i"
}
}