{
  "name": "@ronin/codegen",
  "version": "1.7.4",
  "type": "module",
  "description": "Generates TypeScript code from RONIN models.",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ronin-co/codegen"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./zod": {
      "import": "./dist/zod.js",
      "types": "./dist/zod.d.ts"
    }
  },
  "typesVersions": {
    "*": {
      "*": [
        "dist/index.d.ts"
      ],
      "zod": [
        "dist/zod.d.ts"
      ]
    }
  },
  "scripts": {
    "lint": "bun run --bun lint:tsc && bun run --bun lint:biome",
    "lint:biome": "biome check --error-on-warnings",
    "lint:tsc": "tsc --pretty",
    "format": "biome check --write && biome format --write",
    "test": "bun test",
    "build": "tsup",
    "dev": "tsup --watch",
    "prepare": "bun run build"
  },
  "keywords": [
    "codegen",
    "ts",
    "typescript"
  ],
  "author": "ronin",
  "license": "Apache-2.0",
  "dependencies": {
    "typescript": "5.7.3"
  },
  "devDependencies": {
    "@biomejs/biome": "1.9.4",
    "@ronin/compiler": "0.18.1",
    "@ronin/syntax": "0.2.37",
    "@types/bun": "1.2.4",
    "tsup": "8.4.0"
  }
}
