{
  "name": "@manifesto-ai/compiler",
  "version": "5.0.2",
  "description": "Manifesto Compiler - MEL (Manifesto Expression Language) to DomainSchema compiler",
  "author": "eggplantiny <eggplantiny@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manifesto-ai/core.git",
    "directory": "packages/compiler"
  },
  "bugs": {
    "url": "https://github.com/manifesto-ai/core/issues"
  },
  "homepage": "https://github.com/manifesto-ai/core/tree/main/packages/compiler#readme",
  "keywords": [
    "manifesto",
    "compiler",
    "dsl",
    "semantic",
    "domain-schema",
    "deterministic",
    "schema-generation"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./vite": {
      "types": "./dist/vite.d.ts",
      "import": "./dist/vite.js"
    },
    "./webpack": {
      "types": "./dist/webpack.d.ts",
      "import": "./dist/webpack.js"
    },
    "./rollup": {
      "types": "./dist/rollup.d.ts",
      "import": "./dist/rollup.js"
    },
    "./esbuild": {
      "types": "./dist/esbuild.d.ts",
      "import": "./dist/esbuild.js"
    },
    "./rspack": {
      "types": "./dist/rspack.d.ts",
      "import": "./dist/rspack.js"
    },
    "./node-loader": {
      "types": "./dist/node-loader.d.ts",
      "import": "./dist/node-loader.js"
    },
    "./loader": {
      "types": "./dist/node-loader.d.ts",
      "import": "./dist/node-loader.js"
    }
  },
  "peerDependencies": {
    "@anthropic-ai/sdk": "^0.91.1",
    "@manifesto-ai/core": "^5.1.1",
    "openai": "^4.0.0",
    "vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
    "zod": "^4.3.6"
  },
  "peerDependenciesMeta": {
    "@anthropic-ai/sdk": {
      "optional": true
    },
    "openai": {
      "optional": true
    },
    "vite": {
      "optional": true
    }
  },
  "dependencies": {
    "unplugin": "^3.0.0"
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.105.0",
    "@types/node": "^25.9.3",
    "@types/react": "^19.2.17",
    "dotenv": "^17.4.2",
    "ink": "^7.1.0",
    "ink-select-input": "^6.2.0",
    "ink-spinner": "^5.0.0",
    "meow": "^14.1.0",
    "openai": "^6.44.0",
    "react": "^19.2.7",
    "tsx": "^4.22.4",
    "typescript": "^6.0.3",
    "vite": "^8.0.16",
    "vitest": "^4.1.9",
    "webpack": "^5.107.2",
    "zod": "^4.4.3",
    "@manifesto-ai/core": "5.1.1"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rm -rf dist && tsup && tsc -p tsconfig.build.json --emitDeclarationOnly --declarationMap false --outDir dist",
    "clean": "rm -rf dist",
    "lint": "node ../../scripts/run-biome.mjs check src",
    "test": "node ../../scripts/run-vitest.mjs run",
    "test:coverage": "node ../../scripts/run-vitest.mjs run --coverage",
    "test:watch": "node ../../scripts/run-vitest.mjs",
    "example": "npx tsx examples/simple-compile.ts",
    "cli": "node ./dist/cli/index.js"
  }
}