v1.2.2 - Fix network error on background, auto-retry streaming with reconnect

This commit is contained in:
admin
2026-05-19 15:50:45 +04:00
Unverified
parent 2e327317e4
commit 1026259a20
3831 changed files with 384316 additions and 39 deletions

41
node_modules/find-free-ports/package.json generated vendored Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "find-free-ports",
"version": "3.1.1",
"description": "Find multiple free ports on localhost",
"main": "index.js",
"types": "index.d.ts",
"source": "index.ts",
"scripts": {
"prepare": "tsc && babel --extensions '.ts' index.ts tests.ts --out-dir . --source-maps",
"watch": "concurrently 'ava tests.js --watch' 'babel --watch --extensions .ts index.ts tests.ts --out-dir .'",
"test": "ava tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samvv/node-find-free-ports.git"
},
"keywords": [
"node",
"port",
"networking",
"server",
"client",
"library"
],
"author": "Sam Vervaeck",
"license": "MIT",
"bugs": {
"url": "https://github.com/samvv/node-find-free-ports/issues"
},
"homepage": "https://github.com/samvv/node-find-free-ports#readme",
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/node": "^18.15.11",
"ava": "^5.2.0",
"concurrently": "^8.0.1",
"typescript": "^5.0.4"
}
}