-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 5.15 KB
/
Copy pathpackage.json
File metadata and controls
139 lines (139 loc) · 5.15 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@vpalmisano/webrtcperf",
"version": "4.9.1",
"repository": {
"type": "git",
"url": "https://github.com/vpalmisano/webrtcperf.git"
},
"author": {
"name": "Vittorio Palmisano",
"url": "https://github.com/vpalmisano"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build",
"src"
],
"bin": {
"webrtcperf": "app.min.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "tsc -b && webpack",
"prepublishOnly": "yarn lint",
"postversion": "git push && git push origin $(git tag | sort -V | tail -1)",
"release:patch": "yarn && yarn docs && npm version patch && npm publish",
"release:minor": "yarn && yarn docs && npm version minor && npm publish",
"release:major": "yarn && yarn docs && npm version major && npm publish",
"start": "node app.min.js",
"start:dev": "tsc -b && node build/src/app.js",
"test": "",
"build": "yarn lint && tsc -b && webpack",
"build:docker": "yarn && docker build --platform linux/amd64 -t ghcr.io/vpalmisano/webrtcperf:devel . --load",
"push:docker": "docker push ghcr.io/vpalmisano/webrtcperf:devel",
"build:docker-ffmpeg": "docker build --platform linux/amd64,linux/arm64 -t ghcr.io/vpalmisano/webrtcperf-ffmpeg:devel -f Dockerfile.ffmpeg . --push",
"build:docker-visqol": "docker build --platform linux/amd64,linux/arm64 -t ghcr.io/vpalmisano/webrtcperf-visqol:devel -f Dockerfile.visqol . --push",
"clean": "rm -rf app.min.js build _docs",
"lint": "eslint src examples",
"lint:fix": "yarn lint --fix",
"docs": "yarn build && node build/src/generate-config-docs.js && typedoc",
"build:linux": "nexe --make=\"-j$(nproc 2> /dev/null || echo 1)\" --verbose --build -i app.min.js -o webrtcperf -r package.json && gzip -9 -c webrtcperf > webrtcperf_${npm_package_version}_linux.gz",
"build:macos": "nexe --target mac-x64-14.15.3 -i app.min.js -o webrtcperf -r package.json && gzip -9 -c webrtcperf > webrtcperf_${npm_package_version}_macos.gz && rm webrtcperf",
"build:windows": "nexe --target windows-x64-14.15.3 -i app.min.js -o webrtcperf -r package.json && zip webrtcperf_${npm_package_version}_windows.zip webrtcperf.exe && rm webrtcperf.exe",
"build:all": "yarn && yarn build && yarn build:linux && yarn build:macos && yarn build:windows"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"@google/genai": "^1.52.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@puppeteer/browsers": "^3.0.6",
"@vpalmisano/throttler": "0.1.0",
"@vpalmisano/webrtcperf-js": "^1.5.0",
"chalk-template": "^1.1.2",
"change-case": "^4.1.2",
"compression": "^1.8.1",
"convict": "^6.2.5",
"convict-format-with-validator": "^6.2.0",
"debug-level": "^4.1.1",
"dockerode": "^4.0.12",
"express": "^5.2.1",
"express-basic-auth": "^1.2.1",
"fast-stats": "^0.0.7",
"form-data": "^4.0.5",
"googleapis": "^164.1.0",
"ipaddr.js": "^2.4.0",
"json5": "^2.2.3",
"lorem-ipsum": "^2.0.10",
"marked": "^16.4.2",
"marked-terminal": "^7.3.0",
"node-cache": "^5.1.2",
"node-os-utils": "^1.3.7",
"pidtree": "^0.6.0",
"pidusage": "^4.0.1",
"prom-client": "^15.1.3",
"puppeteer": "^25.3.0",
"puppeteer-core": "^25.3.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-intercept-and-modify-requests": "^1.3.1",
"sprintf-js": "^1.1.3",
"tar-fs": "^3.1.2",
"toml": "^3.0.0",
"ws": "^8.21.0",
"yaml": "^2.9.0",
"zod": "3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/basic-auth": "^1.1.3",
"@types/compression": "^1.8.1",
"@types/convict": "^6.1.6",
"@types/convict-format-with-validator": "^6.0.6",
"@types/dockerode": "^3.3.47",
"@types/fast-stats": "^0.0.35",
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.19.41",
"@types/node-os-utils": "^1.3.4",
"@types/pidusage": "^2.0.5",
"@types/sdp-transform": "^2.15.0",
"@types/sprintf-js": "^1.1.4",
"@types/tar-fs": "^2.0.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"@vpalmisano/typedoc-cookie-consent": "^0.0.4",
"@vpalmisano/typedoc-plugin-ga": "^1.0.6",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"nexe": "^4.0.0-rc.7",
"prettier": "^3.8.3",
"terser-webpack-plugin": "^5.6.1",
"ts-loader": "^9.6.0",
"typedoc": "^0.28.19",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.1",
"webpack": "^5.102.0",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0",
"yarn-audit-fix": "^10.1.1",
"yarn-upgrade-minor": "^1.0.13"
},
"optionalDependencies": {
"chart.js": "^4.5.1",
"chartjs-chart-error-bars": "^4.4.5",
"skia-canvas": "^3.0.8",
"zeromq": "^6.5.0"
}
}