{
  "name": "@typra/emitter",
  "version": "2.1.8",
  "description": "Generic TypeSpec emitter for generating multi-runtime model surfaces",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sethjuarez/typra.git",
    "directory": "packages/typra-emitter"
  },
  "type": "module",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "tspMain": "src/lib/main.tsp",
  "bin": {
    "typra-generate": "dist/src/cli.js",
    "typra-verify": "dist/src/verify-cli.js",
    "typra-consumer-smoke": "dist/src/consumer-smoke.js"
  },
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "default": "./dist/src/index.js"
    },
    "./generate": {
      "types": "./dist/src/generate.d.ts",
      "default": "./dist/src/generate.js"
    },
    "./verify": {
      "types": "./dist/src/verify/index.d.ts",
      "default": "./dist/src/verify/index.js"
    },
    "./testing": {
      "types": "./dist/src/testing/index.d.ts",
      "default": "./dist/src/testing/index.js"
    }
  },
  "files": [
    "README.md",
    "CHANGELOG.md",
    "dist/src/**/*.js",
    "dist/src/**/*.d.ts",
    "dist/src/**/*.json",
    "fixtures/**/*.tsp",
    "src/lib/*.tsp",
    "tspconfig.yaml",
    "fixtures/tspconfig.yaml",
    "fixtures/dispatch-seam/tspconfig.yaml"
  ],
  "peerDependencies": {
    "@typespec/compiler": ">=1.10.0 <2.0.0",
    "@typespec/http": ">=1.10.0 <2.0.0",
    "@typespec/json-schema": ">=1.10.0 <2.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.7.0",
    "@types/semver": "^7.5.8",
    "@typescript-eslint/eslint-plugin": "^8.15.0",
    "@typescript-eslint/parser": "^8.15.0",
    "@typespec/compiler": "^1.15.0",
    "@typespec/http": "^1.15.0",
    "@typespec/json-schema": "^1.15.0",
    "eslint": "^9.15.0",
    "markdownlint-cli": "^0.49.1",
    "prettier": "^3.3.3",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.54.0",
    "zod": "^3.25.76"
  },
  "scripts": {
    "build": "tsc",
    "prepack": "npm run build",
    "watch": "tsc --watch",
    "generate:fixtures": "tsp compile ./fixtures/integration/main.tsp --config ./fixtures/tspconfig.yaml",
    "generate:fixtures:dispatch-seam": "tsp compile ./fixtures/dispatch-seam/main.tsp --config ./fixtures/dispatch-seam/tspconfig.yaml",
    "pretest": "npm run build",
    "prevalidate:fixtures": "npm run build && npm run generate:fixtures",
    "validate:fixtures": "node ./scripts/validate-fixtures.mjs",
    "test": "node --test \"dist/test/*.test.js\" \"scripts/*.test.mjs\"",
    "lint": "eslint src/ test/ --report-unused-disable-directives --max-warnings=0",
    "lint:fix": "eslint . --report-unused-disable-directives --fix",
    "format": "prettier .  --write",
    "format:check": "prettier --check ."
  },
  "publishConfig": {
    "access": "public"
  },
  "packageManager": "npm@11.5.1+sha512.232e6f5d9e799bcb486920b3e9ba907fdf96e576cf7e8c9446c8162e33a416096a1d37a9e910d9a918f6b1f606791c99bc6bb61ee2569b496ec74af13d0dbd95",
  "dependencies": {
    "semver": "^7.7.0",
    "xml-formatter": "^3.6.7",
    "yaml": "^2.9.0"
  }
}
