{
  "name": "zeppol",
  "version": "1.1.1",
  "description": "File validation library",
  "jsdelivr": "./dist/index.global.js",
  "browser": "./dist/index.global.js",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "dev": "tsup --watch --format esm",
    "declaration": "tsc src/index.ts --emitDeclarationOnly --declaration --outDir dist",
    "build": "tsup --format esm,iife",
    "prepare": "npm run build && npm run declaration",
    "version": "git add -A src",
    "postversion": "git push && git push --tags"
  },
  "keywords": [
    "file",
    "validation",
    "library",
    "mime",
    "typescript",
    "type"
  ],
  "author": "Roberth González",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/roberthgnz/zeppol.git"
  },
  "bugs": {
    "url": "https://github.com/roberthgnz/zeppol/issues"
  },
  "homepage": "https://github.com/roberthgnz/zeppol#readme",
  "license": "ISC",
  "devDependencies": {
    "@types/node": "^20.11.24",
    "tsup": "^8.0.2",
    "typescript": "^5.3.3"
  },
  "tsup": {
    "entry": [
      "src/index.ts"
    ],
    "clean": true,
    "globalName": "Zeppol"
  }
}
