{
  "name": "@judo/model-api",
  "version": "0.44.0",
  "description": "TypeScript interfaces mirroring the ECore meta-model for JUDO UI Runtime",
  "license": "EPL-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/BlackBeltTechnology/judo-frontend-runtime.git",
    "directory": "packages/model-api"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/react": "^19.2.14",
    "typescript": "^7.0.2"
  },
  "peerDependencies": {
    "react": "^19.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    }
  },
  "scripts": {
    "build": "vite build && tsc --composite false --emitDeclarationOnly",
    "clean": "rm -rf dist",
    "type-check": "tsc --noEmit"
  }
}