storages-proxy
Version:
A simple, lightweight JavaScript API for handling browser storages
61 lines (60 loc) • 1.55 kB
JSON
{
"name": "storages-proxy",
"version": "2.1.0",
"description": "A simple, lightweight JavaScript API for handling browser storages",
"type": "module",
"main": "dist/index.min.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"test": "rollup --config rollup.config.ts --configPlugin typescript --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wujiesixing/js-storage.git"
},
"keywords": [
"storage",
"storages",
"localStorage",
"sessionStorage",
"js-storage",
"js-storages",
"js-localStorage",
"js-sessionStorage",
"path"
],
"author": "Gavin",
"license": "MIT",
"bugs": {
"url": "https://github.com/wujiesixing/js-storage/issues"
},
"homepage": "https://github.com/wujiesixing/js-storage#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.12.12",
"rollup": "^4.18.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-license": "^3.4.0",
"tslib": "^2.6.2",
"typescript": "^5.4.5"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}