@createnextapp/async-local-storage
Version:
AsyncLocalStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app in web browser. It should be used instead of LocalStorage.
47 lines (46 loc) • 1.31 kB
JSON
{
"name": "@createnextapp/async-local-storage",
"version": "1.0.1",
"description": "AsyncLocalStorage is an unencrypted, asynchronous, persistent, key-value storage system that is global to the app in web browser. It should be used instead of LocalStorage.",
"main": "dist/async-local-storage.js",
"module": "dist/async-local-storage.es.js",
"jsnext:main": "dist/async-local-storage.es.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"author": "Bunlong <bunlong.van@gmail.com>",
"homepage": "https://github.com/CreateNextApp/async-local-storage.git",
"repository": "https://github.com/CreateNextApp/async-local-storage.git",
"bugs": {
"url": "https://github.com/CreateNextApp/async-local-storage/issues"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"rollup": "^2.6.1",
"rollup-plugin-terser": "^5.3.0"
},
"files": [
"dist"
],
"keywords": [
"localstorage",
"local-storage",
"asyncstorage",
"asynclocalstorage",
"local-async-storage",
"storage",
"react",
"reactjs",
"vue",
"vuejs",
"angular",
"angularjs",
"web",
"app"
]
}