-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "krtp",
"version": "4.0.0",
"description": "Node implementation of rtp protocol. RFC 3550",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/1995parham/krtp"
},
"author": "Parham Alvani <parham.alvani@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/1995parham/krtp/issues"
},
"homepage": "https://github.com/1995parham/krtp#readme",
"keywords": [
"rtp",
"rtcp",
"rtp-session",
"rtp-packet",
"rfc-3550"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsc -b",
"test": "jest --coverage",
"lint": "eslint 'lib/**/*.ts'"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.39.1",
"@jest/globals": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"babel-jest": "^30.2.0",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"globals": "^16.5.0",
"jest": "^30.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0"
},
"dependencies": {
"jiti": "^2.6.1",
"rxjs": "^7.8.2"
}
}