{
  "name": "@uploadthing/mime-types",
  "version": "0.2.10",
  "type": "module",
  "sideEffects": false,
  "license": "MIT",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@uploadthing/eslint-config": "0.2.0",
    "@uploadthing/tsconfig": "0.1.0",
    "bunchee": "^5.1.2",
    "eslint": "^8.57.0",
    "typescript": "^5.4.5"
  },
  "publishConfig": {
    "access": "public"
  },
  "eslintConfig": {
    "root": true,
    "rules": {
      "no-restricted-imports": [
        "error",
        {
          "patterns": [
            {
              "group": [
                "@uploadthing/mime-types",
                "@uploadthing/mime-types/*"
              ],
              "message": "Use relative src imports instead"
            }
          ],
          "paths": [
            {
              "name": "effect",
              "message": "Use alias imports instead (import * as X from \"effect/X\")"
            }
          ]
        }
      ]
    },
    "extends": [
      "@uploadthing/eslint-config/base"
    ]
  },
  "scripts": {
    "lint": "eslint src --max-warnings 0",
    "build": "bunchee --tsconfig tsconfig.build.json",
    "clean": "git clean -xdf dist node_modules",
    "dev": "bunchee -w --tsconfig tsconfig.build.json --no-clean",
    "typecheck": "tsc --noEmit"
  }
}