-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.83 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@webrtc-node/webrtc",
"version": "0.2.1",
"description": "Data-channel-first WebRTC for Node.js with W3C-style RTCPeerConnection and RTCDataChannel APIs.",
"author": "webrtc-node contributors",
"homepage": "https://github.com/webrtc-node/webrtc#readme",
"bugs": {
"url": "https://github.com/webrtc-node/webrtc/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webrtc-node/webrtc.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"webrtc",
"webrtc-node",
"rtcpeerconnection",
"rtcdatachannel",
"datachannel",
"node",
"node-api",
"n-api",
"libdatachannel",
"web-platform-tests"
],
"main": "lib/index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./lib/index.js",
"import": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"scripts/install-native.js",
"scripts/prebuild-integrity.js",
"src/native/addon.cc",
"src/native/certificate.cc",
"src/native/certificate.hpp",
"CMakeLists.txt",
"index.d.ts"
],
"scripts": {
"build": "cmake-js compile",
"check": "biome check .",
"clean": "cmake-js clean",
"e2e:chrome": "node test/e2e/run-chrome.js",
"example:datachannel": "node examples/datachannel.js",
"format": "biome format --write .",
"format:check": "biome format .",
"install": "node scripts/install-native.js",
"lint": "biome lint .",
"native:check": "node scripts/check-native-integration.js",
"prebuild:package": "node scripts/package-prebuild.js",
"prebuild:check": "node scripts/check-prebuilds.js",
"api:check": "node scripts/check-api-surface.js",
"test": "node --test --test-force-exit --test-timeout=30000 test/basic.test.js test/nonstandard.test.js test/prebuild-integrity.test.js test/wpt-sharding.test.js",
"types:check": "tsc -p tsconfig.types.json",
"wpt:ensure": "node scripts/ensure-wpt.js",
"wpt:smoke": "node scripts/run-wpt-smoke.js",
"wpt:smoke:check": "node scripts/check-wpt-results.js --fail-on-retries --expected-total 4",
"wpt:test": "node scripts/run-wpt-subset.js",
"wpt:test:sharded": "node scripts/run-wpt-sharded.js",
"wpt:check": "node scripts/check-wpt-results.js",
"wpt:check:strict": "node scripts/check-wpt-results.js --fail-on-retries",
"wpt:selection:check": "node scripts/check-wpt-selection.js",
"wpt:report": "node scripts/write-wpt-report.js"
},
"dependencies": {
"cmake-js": "^8.0.0",
"detect-libc": "^2.1.2",
"node-addon-api": "^8.9.0",
"tar": "^7.5.19"
},
"devDependencies": {
"@biomejs/biome": "2.5.3",
"playwright-core": "1.61.1",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20"
},
"license": "MPL-2.0"
}