{
  "name": "esbuild-plugin-es5",
  "version": "2.1.1",
  "description": "Use the @swc/core transform to convert to ES5 for the esbuild plugin.",
  "keywords": [
    "esbuild-plugin",
    "esbuild",
    "es5"
  ],
  "homepage": "https://github.com/noyobo/esbuild-plugin-es5#readme",
  "bugs": {
    "url": "https://github.com/noyobo/esbuild-plugin-es5/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/noyobo/esbuild-plugin-es5.git"
  },
  "license": "MIT",
  "author": {
    "name": "Youbao Nong",
    "email": "noyobo@gmail.com",
    "url": "https://github.com/noyobo"
  },
  "main": "./lib/index.js",
  "files": [
    "lib/"
  ],
  "lint-staged": {
    "*.ts": "eslint --cache --cache-location .eslintcache --fix"
  },
  "dependencies": {
    "@swc/core": "^1.5.25",
    "@swc/helpers": "^0.5.11",
    "deepmerge": "^4.3.1"
  },
  "devDependencies": {
    "@swc/jest": "^0.2.36",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^29.5.12",
    "@types/minimist": "^1.2.5",
    "@types/node": "^20.14.2",
    "@types/react": "^18.3.3",
    "@types/react-dom": "^18.3.0",
    "@typescript-eslint/eslint-plugin": "^7.12.0",
    "@typescript-eslint/parser": "^7.12.0",
    "conventional-changelog-conventionalcommits": "^7.0.2",
    "esbuild": "^0.20.2",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^5.1.3",
    "fs-extra": "^11.2.0",
    "husky": "^9.0.11",
    "jest": "^29.7.0",
    "lint-staged": "^15.2.5",
    "minimist": "^1.2.8",
    "prettier": "^3.3.1",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "standard-version": "^9.5.0",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.5"
  },
  "peerDependencies": {
    "esbuild": "*"
  },
  "engines": {
    "node": ">=12.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "clean": "rm -rf ./lib/",
    "lint": "eslint ./src/ --fix",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "typecheck": "tsc --noEmit"
  }
}