-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
87 lines (87 loc) · 2.26 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
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
{
"name": "rtp.js",
"version": "0.15.2",
"description": "RTP stack for Node.js and browser written in TypeScript",
"contributors": [
"Iñaki Baz Castillo <[email protected]> (https://inakibaz.me)",
"José Luis Millán <[email protected]> (https://github.com/jmillan)"
],
"homepage": "https://github.com/versatica/rtp.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/rtp.js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"typedoc": "./src/index.ts",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./packets": {
"typedoc": "./src/packets/public.ts",
"types": "./lib/packets/public.d.ts",
"default": "./lib/packets/public.js"
},
"./utils": {
"typedoc": "./src/utils/public.ts",
"types": "./lib/utils/public.d.ts",
"default": "./lib/utils/public.js"
}
},
"files": [
"LICENSE",
"README.md",
"npm-scripts.mjs",
"lib"
],
"keywords": [
"rtp",
"rtcp",
"webrtc",
"nodejs"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"lint": "node npm-scripts.mjs lint",
"format": "node npm-scripts.mjs format",
"test": "node npm-scripts.mjs test",
"coverage": "node npm-scripts.mjs coverage",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release",
"docs": "node npm-scripts.mjs docs",
"docs:watch": "node npm-scripts.mjs docs:watch",
"docs:check": "node npm-scripts.mjs docs:check"
},
"dependencies": {
"@types/node": "^22.13.12",
"debug": "^4.4.0",
"supports-color": "^10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.4",
"globals": "^16.0.0",
"jest": "^29.7.0",
"open-cli": "^8.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.0",
"typedoc": "^0.28.1",
"typescript": "~5.8.2",
"typescript-eslint": "^8.27.0"
}
}