{
  "name": "natural-sticky",
  "version": "1.4.2",
  "type": "module",
  "description": "A lightweight, framework-agnostic package for a natural hide-on-scroll effect.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "lint:check": "eslint src/**/*.ts --max-warnings 0",
    "format": "prettier --write \"src/**/*.{ts,js,json}\"",
    "format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
    "format:all": "prettier --write \"**/*.{ts,js,json,md}\" --ignore-path .prettierignore",
    "clean": "rm -rf dist",
    "build:esm": "esbuild src/index.ts --bundle --platform=browser --outfile=dist/index.mjs --format=esm",
    "build:cjs": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.js --format=cjs",
    "build:umd:top": "esbuild src/top.ts --bundle --platform=browser --format=iife --global-name=naturalStickyTop --footer:js='naturalStickyTop = naturalStickyTop.default' --outfile=/dev/stdout | terser --compress --mangle -o dist/natural-sticky.top.min.js",
    "build:umd:bottom": "esbuild src/bottom.ts --bundle --platform=browser --format=iife --global-name=naturalStickyBottom --footer:js='naturalStickyBottom = naturalStickyBottom.default' --outfile=/dev/stdout | terser --compress --mangle -o dist/natural-sticky.bottom.min.js",
    "build:types": "tsc --emitDeclarationOnly",
    "build": "npm run clean && npm run lint:check && npm run build:esm && npm run build:cjs && npm run build:umd:top && npm run build:umd:bottom && npm run build:types",
    "build:dev": "npm run build && cpy \"dist/**/*\" demo/dist",
    "prepublishOnly": "npm run build",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kadykov/natural-sticky.git"
  },
  "keywords": [
    "sticky",
    "scroll",
    "hide-on-scroll",
    "natural-scrolling"
  ],
  "author": "Gemini",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/kadykov/natural-sticky/issues"
  },
  "homepage": "https://github.kadykov.com/natural-sticky",
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@eslint/js": "^9.33.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.0",
    "@semantic-release/npm": "^13.1.1",
    "@semantic-release/release-notes-generator": "^14.0.3",
    "@typescript-eslint/eslint-plugin": "^8.40.0",
    "@typescript-eslint/parser": "^8.40.0",
    "cpy-cli": "^6.0.0",
    "esbuild": "^0.27.0",
    "eslint": "^9.33.0",
    "eslint-config-prettier": "^10.1.8",
    "husky": "^9.1.7",
    "prettier": "^3.6.2",
    "semantic-release": "^25.0.1",
    "terser": "^5.44.0",
    "typescript": "^5.9.2"
  }
}
