{
  "name": "@typespec/asset-emitter",
  "version": "0.79.1",
  "author": "Microsoft Corporation",
  "description": "TypeSpec Asset Emitter, this is to be replaced by the new emitter framework",
  "homepage": "https://typespec.io",
  "readme": "https://github.com/microsoft/typespec/blob/main/packages/asset-emitter/README.md",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/microsoft/typespec.git"
  },
  "bugs": {
    "url": "https://github.com/microsoft/typespec/issues"
  },
  "keywords": [
    "typespec"
  ],
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/src/index.js"
    }
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "lib/*.tsp",
    "dist/**",
    "!dist/test/**"
  ],
  "peerDependencies": {
    "@typespec/compiler": "^1.10.0"
  },
  "devDependencies": {
    "@types/node": "~25.3.0",
    "@vitest/coverage-v8": "^4.0.18",
    "@vitest/ui": "^4.0.18",
    "c8": "^11.0.0",
    "rimraf": "~6.1.3",
    "typescript": "~5.9.3",
    "vitest": "^4.0.18",
    "@typespec/compiler": "^1.10.0"
  },
  "scripts": {
    "clean": "rimraf ./dist ./temp",
    "build": "tsc -p tsconfig.build.json",
    "watch": "tsc -p tsconfig.build.json --watch",
    "test": "vitest run",
    "test:watch": "vitest -w",
    "test:ui": "vitest --ui",
    "lint": "eslint . --ext .ts --max-warnings=0",
    "lint:fix": "eslint . --fix --ext .ts",
    "api-extractor": "api-extractor run --local --verbose"
  }
}