{
  "name": "@baseplate-dev/project-builder-lib",
  "version": "0.6.10",
  "description": "Library for Project Builder using Baseplate generators",
  "keywords": [
    "baseplate",
    "code-generation",
    "configuration",
    "full-stack",
    "project-definition",
    "typescript"
  ],
  "homepage": "https://www.baseplate.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/halfdomelabs/baseplate",
    "directory": "packages/project-builder-lib"
  },
  "license": "MPL-2.0",
  "author": "Half Dome Labs LLC",
  "sideEffects": false,
  "type": "module",
  "imports": {
    "#src/*": "./dist/*"
  },
  "exports": {
    ".": "./dist/index.js",
    "./web": "./dist/web/index.js",
    "./plugin-tools": "./dist/plugin-tools/index.js",
    "./testing": "./dist/testing/index.js",
    "./package.json": "./package.json"
  },
  "main": "dist/index.js",
  "files": [
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "dist/**/*",
    "!dist/**/*.map",
    "!dist/**/*.tsbuildinfo"
  ],
  "dependencies": {
    "acorn": "^8.15.0",
    "culori": "^4.0.1",
    "es-toolkit": "1.44.0",
    "globby": "^14.0.2",
    "immer": "~11.1.4",
    "inflection": "3.0.0",
    "react-hook-form": "7.71.1",
    "zustand": "5.0.3",
    "@baseplate-dev/sync": "0.6.10",
    "@baseplate-dev/utils": "0.6.10"
  },
  "devDependencies": {
    "@types/culori": "^2.1.1",
    "@types/node": "^24.12.0",
    "@types/react": "19.1.3",
    "eslint": "9.39.2",
    "memfs": "4.15.1",
    "oxlint": "1.56.0",
    "prettier": "3.8.1",
    "tailwindcss": "4.3.0",
    "type-fest": "4.41.0",
    "typescript": "5.9.3",
    "vite": "8.0.16",
    "vitest": "4.1.7",
    "@baseplate-dev/tools": "0.6.10"
  },
  "peerDependencies": {
    "react": "19.1.0",
    "zod": "^4.3.6",
    "@baseplate-dev/ui-components": "0.6.10"
  },
  "engines": {
    "node": "^24.0.0"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean": "rm -rf ./dist",
    "lint": "oxlint && eslint .",
    "prettier:check": "prettier --check .",
    "prettier:write": "prettier -w -l .",
    "test": "vitest",
    "test:coverage": "vitest run --coverage",
    "tsc:watch": "tsc -p tsconfig.build.json --preserveWatchOutput -w",
    "typecheck": "tsc --noEmit"
  }
}