{
  "name": "esbuild-plugin-define",
  "version": "0.6.0",
  "description": "esbuild plugin to define global identifiers",
  "license": "MIT",
  "author": {
    "email": "eric@webdeveric.com",
    "name": "Eric King",
    "url": "http://webdeveric.com/"
  },
  "keywords": [
    "esbuild",
    "plugin",
    "define"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/webdeveric/esbuild-plugin-define.git"
  },
  "bugs": {
    "url": "https://github.com/webdeveric/esbuild-plugin-define/issues"
  },
  "homepage": "https://github.com/webdeveric/esbuild-plugin-define",
  "type": "module",
  "main": "./dist/mjs/plugin.js",
  "types": "./dist/types/plugin.d.ts",
  "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
  "engines": {
    "node": ">=20.0.0"
  },
  "exports": {
    ".": {
      "types": "./dist/types/plugin.d.ts",
      "require": "./dist/cjs/plugin.js",
      "import": "./dist/mjs/plugin.js"
    },
    "./*": {
      "types": "./dist/types/*.d.ts",
      "require": "./dist/cjs/*.js",
      "import": "./dist/mjs/*.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "lint": "eslint --fix ./*{js,cjs,mjs} ./src/",
    "clean": "rimraf ./dist/",
    "prebuild": "pnpm clean",
    "build": "tsc --build tsconfig.cjs.json tsconfig.mjs.json --force",
    "postbuild": "echo '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json && echo '{\"type\":\"module\"}' > ./dist/mjs/package.json && pnpm validate",
    "validate": "validate-package-exports --check --info",
    "typecheck": "tsc --build --verbose --noEmit",
    "spellcheck": "cspell --no-progress './{.github,src,test}/**/*.{ts,js,json}' './*.{md,js}' './package.json'",
    "format": "prettier --write ./*.{js,json,md} ./src/ ./test/ --no-error-on-unmatched-pattern",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "prepack": "pnpm build",
    "prepublishOnly": "pnpm typecheck && pnpm spellcheck && pnpm lint && pnpm coverage",
    "prepare": "husky"
  },
  "prettier": "@webdeveric/prettier-config",
  "peerDependencies": {
    "esbuild": ">=0.15"
  },
  "devDependencies": {
    "@commitlint/config-conventional": "^20.5.0",
    "@commitlint/types": "^20.5.0",
    "@vitest/coverage-v8": "^4.1.2",
    "@webdeveric/eslint-config-ts": "^0.12.0",
    "@webdeveric/prettier-config": "^0.4.0",
    "commitlint": "^20.5.0",
    "commitlint-plugin-cspell": "^0.7.0",
    "cspell": "^9.7.0",
    "esbuild": "^0.27.5",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.5",
    "glob": "^13.0.6",
    "husky": "^9.1.7",
    "lint-staged": "^16.4.0",
    "prettier": "^3.8.1",
    "rimraf": "^6.1.3",
    "semantic-release": "^25.0.3",
    "typescript": "^6.0.2",
    "validate-package-exports": "^0.23.0",
    "vitest": "^4.1.2"
  }
}
