{
  "name": "@stencil/cli",
  "version": "5.0.0-beta.12",
  "description": "CLI for Stencil - Web component compiler",
  "keywords": [
    "components",
    "custom elements",
    "ionic",
    "progressive web app",
    "pwa",
    "stencil",
    "web components",
    "webapp"
  ],
  "homepage": "https://stenciljs.com/",
  "license": "MIT",
  "author": "StencilJs Contributors",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stenciljs/core.git"
  },
  "bin": {
    "stencil": "./bin/stencil.mjs"
  },
  "files": [
    "bin/",
    "dist/"
  ],
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    },
    "./cli": "./bin/stencil.mjs"
  },
  "dependencies": {
    "@clack/prompts": "^1.7.0",
    "local-pkg": "^1.2.1",
    "nypm": "^0.3.12",
    "std-env": "^3.10.0",
    "typescript": ">5.0.0 <7.0.0",
    "@stencil/templates": "5.0.0-beta.12",
    "@stencil/dev-server": "5.0.0-beta.12"
  },
  "devDependencies": {
    "tsdown": "^0.22.14",
    "vitest": "^4.1.10",
    "@stencil/core": "5.0.0-beta.12"
  },
  "peerDependencies": {
    "@stencil/core": "^5.0.0 || 5.0.0-beta.12"
  },
  "volta": {
    "extends": "../../package.json"
  },
  "scripts": {
    "build": "tsdown",
    "test": "vitest run && pnpm test:e2e",
    "test:e2e": "vitest run --config vitest.e2e.config.ts",
    "typecheck": "tsc --noEmit"
  }
}