{
  "name": "esbuild-plugin-copy-watch",
  "type": "module",
  "version": "2.3.1",
  "description": "Esbuild plugin to copy and watch for files",
  "author": {
    "name": "Martín Acosta",
    "email": "tinchoz49@gmail.com"
  },
  "license": "MIT",
  "homepage": "https://github.com/tinchoz49/esbuild-plugin-copy-watch#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tinchoz49/esbuild-plugin-copy-watch.git"
  },
  "bugs": {
    "url": "https://github.com/tinchoz49/esbuild-plugin-copy-watch/issues"
  },
  "keywords": [
    "esbuild",
    "plugin",
    "copy",
    "watch"
  ],
  "exports": {
    "types": "./types/index.d.ts",
    "import": "./src/index.js",
    "require": "./dist/index.cjs"
  },
  "main": "./dist/index.cjs",
  "types": "./types/index.d.ts",
  "files": [
    "dist",
    "src",
    "types"
  ],
  "scripts": {
    "start": "node index.js",
    "test": "uvu -i tests/from -i tests/to",
    "posttest": "npm run lint",
    "lint": "eslint .",
    "prepublishOnly": "npm test && npm run build && npm run types",
    "build": "esbuild src/index.js --outfile=dist/index.cjs --format=cjs",
    "types": "tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types"
  },
  "dependencies": {
    "@types/node": "^20.14.2",
    "anymatch": "^3.1.3",
    "chokidar": "^3.6.0",
    "fs-extra": "^11.2.0",
    "glob-parent": "^6.0.2",
    "is-glob": "^4.0.3"
  },
  "devDependencies": {
    "del": "^6.0.0",
    "esbuild": "^0.21.5",
    "eslint": "^8.57.0",
    "eslint-config-standard-ext": "^0.0.23",
    "typescript": "^5.4.5",
    "uvu": "^0.5.6"
  },
  "standard": {
    "env": [
      "node",
      "browser"
    ]
  }
}
