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

48
node_modules/node-localstorage/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "node-localstorage",
"version": "2.2.1",
"main": "./LocalStorage",
"description": "A drop-in substitute for the browser native localStorage API that runs on node.js.",
"keywords": [
"localStorage",
"Web Storage",
"node.js"
],
"author": {
"name": "Larry Maccherone",
"url": "http://maccherone.com"
},
"homepage": "https://github.com/lmaccherone/node-localstorage",
"engines": {
"node": ">=0.12"
},
"repository": {
"type": "git",
"url": "http://github.com/lmaccherone/node-localstorage.git"
},
"preferGlobal": false,
"devDependencies": {
"coffeescript": "^1.12.7",
"coffeetape": "^2.0.0",
"lodash": "^4.17.15",
"nyc": "^14.1.1",
"tap-nyc": "^1.0.3",
"tap-spec": "^5.0.0"
},
"scripts": {
"test": "npm run build && coffeetape test/*.coffee | tap-spec",
"coverage": "npm run build && nyc --reporter=lcov coffeetape test/*.coffee | tap-nyc",
"coverage:summary": "nyc report --reporter=text-summary",
"coverage:report": "python3 -m http.server 3000 -d coverage/lcov-report",
"publish:patch": "npm run test && npm version patch && npm publish",
"publish:minor": "npm run test && npm version minor && npm publish",
"publish:major": "npm run test && npm version major && npm publish",
"postpublish": "git push --tags",
"build": "coffee -c LocalStorage.coffee",
"prepublishOnly": "coffee -c LocalStorage.coffee"
},
"license": "MIT",
"dependencies": {
"write-file-atomic": "^1.1.4"
}
}