{
  "name": "saveform",
  "version": "1.4.0",
  "description": "Lightweight solution to persist form field values across page reloads",
  "homepage": "https://github.com/sanand0/saveform#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/sanand0/saveform.git"
  },
  "license": "MIT",
  "author": "Anand S <root.node@gmail.com>",
  "type": "module",
  "module": "saveform.js",
  "prettier": {
    "printWidth": 120
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist/"
  ],
  "browser": "dist/saveform.min.js",
  "exports": "./dist/saveform.min.js",
  "scripts": {
    "build": "npx -y esbuild saveform.js --bundle --format=esm --outfile=dist/saveform.min.js --minify",
    "lint:oxlint": "npx -y oxlint --fix",
    "lint:js-md": "npx -y prettier@3.5 --print-width 120 --write '**/*.js' '!**/*.min.js' '!dist/**' '**/*.md'",
    "lint:html": "npx -y js-beautify@1 '**/*.html' --type html --replace --indent-size 2 --max-preserve-newlines 1 --end-with-newline",
    "lint": "npm run lint:oxlint && npm run lint:js-md && npm run lint:html",
    "test": "npx -y vitest run",
    "prepublishOnly": "npm run lint && npm run build && npm test"
  },
  "devDependencies": {
    "happy-dom": "^18.0.1"
  },
  "keywords": [
    "form",
    "localStorage",
    "sessionStorage",
    "persistence",
    "save",
    "restore",
    "input",
    "browser"
  ]
}
