{
  "name": "i45",
  "version": "3.0.0",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "alpha-patch": "npm version prerelease --preid=alpha",
    "patch": "npm version patch",
    "minor": "npm version minor",
    "major": "npm version major",
    "test:verbose": "jest --verbose",
    "test:ci": "jest --ci --coverage --maxWorkers=2",
    "checkin": "git add . && git commit -a -m \"See CHANGES.md for a list of Revisions.\" ",
    "link": "npm run build && npm link",
    "build": "npm run clean && npm run build:types && npm run build:bundle",
    "build:types": "tsc --emitDeclarationOnly",
    "build:bundle": "rollup -c",
    "clean": "rm -rf dist",
    "dev": "rollup -c -w",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run typecheck && npm run test && npm run build"
  },
  "keywords": [
    "localStorage",
    "sessionStorage",
    "browser-storage",
    "web-storage",
    "storage-wrapper",
    "data-persistence",
    "client-side-storage",
    "storage-manager",
    "browser-cache",
    "session-management",
    "local-storage",
    "storage-api",
    "javascript-storage",
    "typescript-storage"
  ],
  "author": "CIS Guru <cisguru@outlook.com>",
  "license": "MIT",
  "description": "A powerful, type-safe wrapper for browser storage (localStorage, sessionStorage) with built-in logging, validation, and error handling. Simplifies storing and retrieving collections in web applications.",
  "files": [
    "dist",
    "dist/core",
    "dist/errors",
    "dist/models",
    "dist/services",
    "dist/utils",
    "docs",
    "README.md",
    "CHANGES.md",
    "package.json"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=14.0.0"
  },
  "homepage": "https://github.com/xnodeoncode/i45",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xnodeoncode/i45.git"
  },
  "bugs": {
    "url": "https://github.com/xnodeoncode/i45/issues"
  },
  "devDependencies": {
    "@eslint/js": "^9.30.1",
    "@jest/globals": "^30.2.0",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/jest": "^30.0.0",
    "eslint": "^9.30.1",
    "eslint-plugin-react-hooks": "^5.2.0",
    "eslint-plugin-react-refresh": "^0.4.20",
    "globals": "^16.3.0",
    "jest": "^30.2.0",
    "jest-environment-jsdom": "^30.2.0",
    "prop-types": "^15.8.1",
    "rollup": "^4.53.5",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "i45-jslogger": "^2.0.1",
    "i45-sample-data": "^3.1.0"
  }
}
