{
  "name": "@bicycle-codes/session-cookie",
  "version": "0.3.9",
  "description": "Cookies",
  "directories": {
    "test": "test"
  },
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "cookiekey": "dist/bin.js"
  },
  "files": [
    "./dist/*"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "import": [
        "./dist/*.js",
        "./dist/*"
      ],
      "require": [
        "./dist/*.cjs",
        "./dist/*"
      ]
    }
  },
  "scripts": {
    "lint": "eslint \"./**/*.{ts,js}\"",
    "test": "esbuild ./test/index.ts --platform=node --format=esm --bundle | node --input-type=module | tap-spec",
    "build-cjs": "esbuild src/*.ts --platform=node --format=cjs --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --out-extension:.js=.cjs --sourcemap",
    "build-esm": "esbuild src/*.ts --platform=node --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
    "build-docs": "typedoc ./src/index.ts",
    "build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-cjs && npm run build-esm",
    "toc": "markdown-toc --maxdepth 3 -i README.md",
    "preversion": "npm run lint",
    "version": "npm run toc && auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md README.md",
    "postversion": "git push --follow-tags && npm publish",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@bicycle-codes/one-webcrypto": "^1.1.2",
    "json-canon": "^1.0.1",
    "uint8arrays": "^5.1.0"
  },
  "devDependencies": {
    "@bicycle-codes/debug": "^0.7.2",
    "@bicycle-codes/tapzero": "^0.10.3",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "auto-changelog": "^2.4.0",
    "esbuild": "^0.24.0",
    "eslint": "^8.57.0",
    "eslint-config-standard": "^17.1.0",
    "htm": "^3.1.1",
    "markdown-toc": "^1.2.0",
    "postcss-nesting": "^13.0.0",
    "tap-spec": "^5.0.0",
    "tape-run": "^11.0.0",
    "typedoc": "^0.27.0",
    "typescript": "^5.4.5"
  },
  "author": "nichoth <nichoth@nichoth.com> (https://nichoth.com)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bicycle-codes/session-cookie.git"
  },
  "keywords": [
    "cookie",
    "http",
    "session"
  ],
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/bicycle-codes/session-cookie/issues"
  },
  "homepage": "https://github.com/bicycle-codes/session-cookie#readme",
  "license": "SEE LICENSE IN LICENSE"
}
