{
  "name": "attr-accept",
  "version": "4.0.0",
  "description": "JavaScript implementation of the \"accept\" attribute for HTML5 <input type=\"file\">",
  "keywords": [
    "accept",
    "attr",
    "attribute",
    "file",
    "html5",
    "input",
    "tag"
  ],
  "homepage": "https://github.com/react-dropzone/attr-accept#readme",
  "bugs": {
    "url": "https://github.com/react-dropzone/attr-accept/issues"
  },
  "license": "MIT",
  "author": "Andrey Okonetchnikov @okonetchnikov",
  "contributors": [
    "Andrey Okonetchnikov <andrey@okonet.ru> (http://okonet.ru)",
    "Roland Groza <rolandjitsu@gmail.com>"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/react-dropzone/attr-accept.git"
  },
  "files": [
    "dist",
    "src",
    "!src/**/*.spec.*"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "prepare": "prek install || exit 0",
    "hooks:install": "prek install",
    "hooks:run": "prek run --all-files",
    "prebuild": "npm run clean",
    "build": "tsdown",
    "dev": "tsdown --watch",
    "clean": "rm -rf dist",
    "type-check": "tsc --noEmit",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "lint:type-aware": "oxlint --type-aware",
    "format": "oxfmt .",
    "format:check": "oxfmt --check .",
    "pretest:cov": "npm run type-check && npm run lint && npm run format:check",
    "test": "vitest",
    "test:cov": "vitest run --coverage",
    "presize": "npm run build",
    "size": "size-limit"
  },
  "devDependencies": {
    "@size-limit/file": "^12.1.0",
    "@types/node": "^26.1.1",
    "@vitest/coverage-v8": "^4.1.10",
    "oxfmt": "^0.60.0",
    "oxlint": "^1.75.0",
    "oxlint-tsgolint": "^0.24.0",
    "size-limit": "^12.1.0",
    "tsdown": "^0.22.9",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "size-limit": [
    {
      "name": "esm",
      "path": "dist/index.js",
      "limit": "2 kB"
    },
    {
      "name": "cjs",
      "path": "dist/index.cjs",
      "limit": "2 kB"
    }
  ],
  "engines": {
    "node": ">= 22"
  }
}
