UNPKG

@amitkhare/indexed-storage

Version:

A modern, localStorage-like API for IndexedDB with instance-based and static APIs, multi-store support, configurable databases, and enhanced capabilities

78 lines 2.02 kB
{ "name": "@amitkhare/indexed-storage", "version": "1.2.0", "description": "A modern, localStorage-like API for IndexedDB with instance-based and static APIs, multi-store support, configurable databases, and enhanced capabilities", "type": "module", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.esm.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "files": [ "src/", "dist/", "README.md", "LICENSE" ], "scripts": { "build": "rollup -c", "build:types": "tsc --emitDeclarationOnly", "dev": "rollup -c -w", "test": "node test/run-tests.js", "test:browser": "start test/browser-test.html", "validate": "node scripts/validate-package.js", "prepublishOnly": "npm run build && npm run build:types && npm run validate", "clean": "rimraf dist" }, "keywords": [ "indexeddb", "storage", "localStorage", "browser", "database", "async", "client-side", "web-storage", "multi-store", "multi-database", "instance-based", "configurable", "constructor", "class-based", "javascript", "typescript", "modern", "api" ], "author": "Amit Kumar Khare", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/amitkhare/indexed-storage.git" }, "bugs": { "url": "https://github.com/amitkhare/indexed-storage/issues" }, "homepage": "https://github.com/amitkhare/indexed-storage#readme", "devDependencies": { "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-terser": "^0.4.0", "@rollup/plugin-typescript": "12.1.2", "rimraf": "^5.0.0", "rollup": "^3.0.0", "tslib": "2.8.1", "typescript": "5.8.3" }, "engines": { "node": ">=14.0.0" }, "browserslist": [ "defaults", "not IE 11" ] }