v1.2.2 - Fix network error on background, auto-retry streaming with reconnect
This commit is contained in:
69
node_modules/@kvs/storage/package.json
generated
vendored
Normal file
69
node_modules/@kvs/storage/package.json
generated
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"name": "@kvs/storage",
|
||||
"version": "2.2.2",
|
||||
"description": "Storage(localStorage, sessionStorage) helper for KVS.",
|
||||
"keywords": [
|
||||
"kvs",
|
||||
"browser",
|
||||
"localstorage"
|
||||
],
|
||||
"homepage": "https://github.com/azu/kvs/tree/master/packages/storage/",
|
||||
"bugs": {
|
||||
"url": "https://github.com/azu/kvs/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/azu/kvs.git"
|
||||
},
|
||||
"license": "MIT",
|
||||
"author": "azu",
|
||||
"sideEffects": false,
|
||||
"main": "lib/index.js",
|
||||
"module": "module/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"directories": {
|
||||
"lib": "lib",
|
||||
"test": "test"
|
||||
},
|
||||
"files": [
|
||||
"bin/",
|
||||
"lib/",
|
||||
"module"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "tsc -p . && tsc --project ./tsconfig.module.json",
|
||||
"clean": "rimraf lib/ module/",
|
||||
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
|
||||
"prepublishOnly": "npm run clean && npm run build",
|
||||
"test": "tsc -p .",
|
||||
"test:browser": "npm run test:chrome && npm run test:firefox && npm run test:webkit",
|
||||
"test:chrome": "playwright-test ./test/index.test.ts --runner=mocha --browser=chromium",
|
||||
"test:firefox": "playwright-test ./test/index.test.ts --runner=mocha --browser=firefox",
|
||||
"test:webkit": "playwright-test ./test/index.test.ts --runner=mocha --browser=webkit",
|
||||
"watch": "tsc -p . --watch"
|
||||
},
|
||||
"prettier": {
|
||||
"printWidth": 120,
|
||||
"singleQuote": false,
|
||||
"tabWidth": 4,
|
||||
"trailingComma": "none"
|
||||
},
|
||||
"dependencies": {
|
||||
"@kvs/types": "^2.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@kvs/common-test-case": "^2.2.2",
|
||||
"@types/mocha": "^10.0.1",
|
||||
"@types/node": "^20.4.2",
|
||||
"mocha": "^10.2.0",
|
||||
"playwright-test": "^14.1.12",
|
||||
"prettier": "^3.0.0",
|
||||
"rimraf": "^5.0.1",
|
||||
"ts-loader": "^9.4.4",
|
||||
"typescript": "^5.1.6"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"gitHead": "d8a7098f37e551532dbcc8c411fe26ec493cd898"
|
||||
}
|
||||
Reference in New Issue
Block a user