{
  "name": "cookie-muncher",
  "description": "Effortless cookie management for server and browser",
  "version": "0.4.6",
  "license": "MIT",
  "author": "Bluzzi",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "homepage": "https://github.com/Bluzzi/cookie-muncher#readme",
  "bugs": {
    "url": "https://github.com/Bluzzi/cookie-muncher/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bluzzi/cookie-muncher.git"
  },
  "devDependencies": {
    "@bluzzi/eslint-config": "^1.3.2",
    "@types/node": "^22.10.2",
    "@vitest/ui": "^2.1.8",
    "eslint": "^9.17.0",
    "jsdom": "^25.0.1",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vitest": "^2.1.8"
  },
  "keywords": [
    "cookie",
    "cookies",
    "browser",
    "client",
    "http",
    "https",
    "parser",
    "serializer",
    "amd",
    "cjs",
    "commonjs",
    "esm",
    "typescript",
    "typesafe",
    "rfc6265"
  ],
  "scripts": {
    "build": "tsup src/index.ts --minify --format cjs,esm --clean --dts",
    "test": "vitest --ui",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "ts:check": "tsc --noEmit"
  }
}