{
  "author": "tony.quetano@planttheidea.com",
  "bin": {
    "pti": "bin/index.js"
  },
  "bugs": {
    "url": "https://github.com/planttheidea/build-tools/issues"
  },
  "dependencies": {
    "@eslint/js": "^9.39.4",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/node": "^24.13.3",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "@vitest/coverage-v8": "^4.1.10",
    "camelcase": "^9.0.0",
    "eslint": "^9.39.4",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^7.1.1",
    "execa": "^9.6.1",
    "fast-glob": "^3.3.3",
    "prettier": "^3.9.4",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "release-it": "^20.2.1",
    "rollup": "^4.62.2",
    "rollup-plugin-delete": "^3.0.2",
    "rollup-plugin-dts": "^6.4.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.63.0",
    "vite": "^8.1.3",
    "vitest": "^4.1.10",
    "yargs": "^18.0.0"
  },
  "description": "Build tools for the suite of PTI packages",
  "devDependencies": {
    "@types/yargs": "^17.0.35",
    "ts-node": "^10.9.2"
  },
  "exports": {
    ".": {
      "default": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    },
    "./eslint": {
      "default": {
        "types": "./dist/eslint.d.ts",
        "default": "./dist/eslint.js"
      }
    },
    "./rollup": {
      "default": {
        "types": "./dist/rollup.d.ts",
        "default": "./dist/rollup.js"
      }
    },
    "./vite": {
      "default": {
        "types": "./dist/vite.d.ts",
        "default": "./dist/vite.js"
      }
    },
    "./vitest": {
      "default": {
        "types": "./dist/vitest.d.ts",
        "default": "./dist/vitest.js"
      }
    }
  },
  "files": [
    "bin",
    "dist",
    "templates",
    "LICENSE",
    "package.json"
  ],
  "homepage": "https://github.com/planttheidea/build-tools#readme",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "name": "@planttheidea/build-tools",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/planttheidea/build-tools.git"
  },
  "scripts": {
    "build": "npm run clean && npm run build:dist",
    "build:dist": "rollup -c config/rollup.config.js",
    "clean": "rm -rf dist",
    "format": "prettier . --log-level=warn --write",
    "format:check": "prettier . --log-level=warn --check",
    "lint": "eslint --max-warnings=0",
    "release:alpha": "release-it --config=config/release-it/alpha.json",
    "release:beta": "release-it --config=config/release-it/beta.json",
    "release:rc": "release-it --config=config/release-it/rc.json",
    "release:scripts": "npm run format:check && npm run typecheck && npm run lint && npm run test && npm run build",
    "release:stable": "release-it --config=config/release-it/stable.json",
    "test": "vitest run --config config/vitest.config.ts",
    "test:coverage": "vitest run --config config/vitest.config.ts --coverage",
    "test:watch": "vitest --config config/vitest.config.ts",
    "typecheck": "tsc --noEmit"
  },
  "sideEffects": "false",
  "type": "module",
  "version": "2.0.2"
}
