{
  "name": "@baseplate-dev/plugin-queue",
  "version": "0.6.10",
  "description": "Contains the queue plugin for Baseplate",
  "keywords": [
    "baseplate",
    "code-generation",
    "full-stack",
    "plugin",
    "queue",
    "typescript"
  ],
  "homepage": "https://www.baseplate.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/halfdomelabs/baseplate"
  },
  "license": "MPL-2.0",
  "author": "Half Dome Labs LLC",
  "type": "module",
  "imports": {
    "#src/*": "./dist/*"
  },
  "exports": {
    ".": "./dist/index.js"
  },
  "main": "dist/index.js",
  "files": [
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "dist/**/*",
    "!dist/**/*.map",
    "!dist/**/*.tsbuildinfo"
  ],
  "dependencies": {
    "@hookform/resolvers": "5.2.2",
    "@tanstack/react-router": "1.159.5",
    "react": "19.1.0",
    "react-dom": "19.1.0",
    "react-hook-form": "7.71.1",
    "zod": "^4.3.6",
    "@baseplate-dev/core-generators": "0.6.10",
    "@baseplate-dev/fastify-generators": "0.6.10",
    "@baseplate-dev/project-builder-lib": "0.6.10",
    "@baseplate-dev/sync": "0.6.10",
    "@baseplate-dev/ui-components": "0.6.10",
    "@baseplate-dev/utils": "0.6.10"
  },
  "devDependencies": {
    "@module-federation/vite": "1.15.4",
    "@tailwindcss/vite": "4.3.0",
    "@types/node": "^24.12.0",
    "@types/react": "19.1.3",
    "@types/react-dom": "19.1.3",
    "@vitejs/plugin-react": "6.0.2",
    "concurrently": "10.0.3",
    "cpx2": "8.0.0",
    "eslint": "9.39.2",
    "nodemon": "3.1.11",
    "oxlint": "1.56.0",
    "prettier": "3.8.1",
    "tailwindcss": "4.3.0",
    "typescript": "5.9.3",
    "vite": "8.0.16",
    "vitest": "4.1.7",
    "@baseplate-dev/tools": "0.6.10"
  },
  "engines": {
    "node": "^24.0.0"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "concurrently pnpm:build:*",
    "build:static": "cpx \"src/**/{templates/**,static/**,plugin.json}\" \"dist/\" --clean",
    "build:tsc": "tsc -p tsconfig.build.json",
    "build:vite": "vite build",
    "clean": "rm -rf ./dist",
    "lint": "oxlint && eslint .",
    "prettier:check": "prettier --check .",
    "prettier:write": "prettier -w -l .",
    "tsc:watch": "tsc -p tsconfig.build.json --preserveWatchOutput -w",
    "typecheck": "tsc --noEmit",
    "watch": "concurrently pnpm:watch:*",
    "watch:static": "pnpm build:static --watch",
    "watch:vite": "nodemon --watch vite.config.ts --watch src --ignore \"**/generators/**\" -e ts,tsx,css,json --exec \"vite build\""
  }
}