{
  "name": "clay-generator",
  "version": "0.3.3",
  "description": "a model and convention based source code generator",
  "main": "dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./types": {
      "types": "./dist/src/code-generator.d.ts",
      "default": "./dist/src/code-generator.js"
    },
    "./conventions": "./dist/src/conventions.js",
    "./model": "./dist/src/model.js",
    "./generate-api": "./dist/src/generate-api.js",
    "./generator-authoring": "./dist/src/generator-authoring.js"
  },
  "scripts": {
    "build": "tsc && cd mcp && npm install && npm run build && cd ..",
    "build:watch": "tsc --watch",
    "dev": "ts-node index.ts",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && npm test",
    "test": "mocha",
    "test:watch": "mocha --watch",
    "lint": "eslint 'src/**/*.ts' 'test/**/*.ts' 'index.ts'",
    "lint:fix": "eslint 'src/**/*.ts' 'test/**/*.ts' 'index.ts' --fix",
    "format": "prettier --write 'src/**/*.ts' 'test/**/*.ts' 'index.ts'",
    "format:check": "prettier --check 'src/**/*.ts' 'test/**/*.ts' 'index.ts'"
  },
  "bin": {
    "clay": "bin/clay-dev",
    "clay-mcp": "bin/clay-mcp"
  },
  "files": [
    "dist/",
    "bin/",
    "mcp/dist/",
    "mcp/package.json",
    "README.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/morkeleb/clay.git"
  },
  "homepage": "https://morkeleb.github.io/clay/",
  "author": "Morten Nielsen",
  "license": "ISC",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.27.1",
    "ajv": "^8.17.1",
    "chalk": "^4.1.0",
    "chokidar": "^3.5.1",
    "commander": "^7.2.0",
    "crypto": "^1.0.1",
    "ejs": "^6.0.1",
    "fs-extra": "^9.1.0",
    "handlebars": "^4.7.7",
    "handlebars-group-by": "https://github.com/jonasalfthan/handlebars-group-by",
    "inquirer": "^8.2.6",
    "jiti": "^2.7.0",
    "jsonpath": "^1.1.1",
    "lobars": "^1.2.0",
    "lodash": "^4.17.21",
    "lodash-inflection": "^1.5.0",
    "marked": "^2.0.1",
    "minimatch": "^3.1.5",
    "nyc": "^15.1.0",
    "resolve-global": "^1.0.0",
    "zod": "^3.24.3"
  },
  "devDependencies": {
    "@types/chai": "^5.2.3",
    "@types/ejs": "^3.1.5",
    "@types/fs-extra": "^11.0.4",
    "@types/handlebars": "^4.0.40",
    "@types/inquirer": "^9.0.9",
    "@types/jsonpath": "^0.2.4",
    "@types/lodash": "^4.17.20",
    "@types/marked": "^5.0.2",
    "@types/minimatch": "^5.1.2",
    "@types/mocha": "^10.0.10",
    "@types/node": "^24.10.0",
    "@types/sinon": "^17.0.4",
    "@typescript-eslint/eslint-plugin": "^8.46.3",
    "@typescript-eslint/parser": "^8.46.3",
    "chai": "^4.3.4",
    "decache": "^4.6.0",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "mocha": "^8.3.2",
    "mock-require": "^3.0.3",
    "prettier": "^3.6.2",
    "sinon": "^10.0.0",
    "ts-node": "^10.9.2",
    "tsconfig-paths": "^4.2.0",
    "typescript": "^5.9.3"
  }
}
