{
  "name": "@wix/htmdx",
  "version": "4.15.0",
  "description": "Render editable HTMDX source inside plain HTML artifacts.",
  "keywords": [
    "agents",
    "artifacts",
    "custom-element",
    "html",
    "mdx"
  ],
  "homepage": "https://github.com/wix-incubator/htmdx#readme",
  "bugs": {
    "url": "https://github.com/wix-incubator/htmdx/issues"
  },
  "license": "MIT",
  "author": "Vlad Tansky (https://github.com/vltansky)",
  "bin": "./dist/cli.js",
  "files": [
    "dist/**/*.js",
    "dist/**/*.d.ts",
    "dist/components.json",
    "skill/**",
    "!dist/src/**/*.stories.d.ts",
    "!dist/src/storybook/**",
    "!dist/test/**",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "types": "./dist/src/index.d.ts",
  "unpkg": "./dist/browser.js",
  "jsdelivr": "./dist/browser.js",
  "exports": {
    ".": {
      "types": "./dist/src/index.d.ts",
      "default": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/src/browser.d.ts",
      "default": "./dist/browser.js"
    },
    "./react": {
      "types": "./dist/src/react/index.d.ts",
      "default": "./dist/react.js"
    },
    "./testing": {
      "types": "./dist/src/testing/index.d.ts",
      "default": "./dist/testing.js"
    },
    "./components": {
      "types": "./dist/src/components/index.d.ts",
      "default": "./dist/components.js"
    },
    "./components/builtins": {
      "types": "./dist/src/components/builtins/index.d.ts",
      "default": "./dist/components-builtins.js"
    },
    "./components/shadcn": {
      "types": "./dist/src/components/shadcn/index.d.ts",
      "default": "./dist/components-shadcn.js"
    }
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "scripts": {
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check",
    "build": "yarn build:library && yarn build-storybook",
    "build:library": "rm -rf dist && yarn typecheck && rollup -c && yarn build:browser",
    "build:browser": "vite build -c vite.browser.config.ts",
    "build-storybook": "../../node_modules/.bin/storybook build",
    "storybook": "../../node_modules/.bin/storybook dev -p 6006",
    "typecheck": "tsc --noEmit",
    "test": "vitest",
    "bench": "vitest run --config bench/vitest.config.ts",
    "e2e": "playwright test"
  },
  "dependencies": {
    "@radix-ui/react-accordion": "^1.2.15",
    "@radix-ui/react-aspect-ratio": "^1.1.11",
    "@radix-ui/react-avatar": "^1.2.1",
    "@radix-ui/react-collapsible": "^1.1.15",
    "@radix-ui/react-dialog": "^1.1.18",
    "@radix-ui/react-hover-card": "^1.1.18",
    "@radix-ui/react-popover": "^1.1.18",
    "@radix-ui/react-progress": "^1.1.11",
    "@radix-ui/react-separator": "^1.1.11",
    "@radix-ui/react-slot": "^1.3.0",
    "@radix-ui/react-tabs": "^1.1.16",
    "@radix-ui/react-tooltip": "^1.2.11",
    "class-variance-authority": "^0.7.1",
    "clsx": "^2.1.1",
    "jsdom": "^27.2.0",
    "lucide-react": "^1.23.0",
    "tailwind-merge": "^3.6.0"
  },
  "devDependencies": {
    "@playwright/test": "^1.61.1",
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.3.0",
    "@storybook/web-components-vite": "^10.4.6",
    "@types/jsdom": "^27",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "diff": "^9.0.0",
    "gpt-tokenizer": "^3.4.0",
    "lit": "^3.3.2",
    "oxfmt": "^0.54.0",
    "oxlint": "^1.69.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7",
    "rollup": "^4.61.1",
    "storybook": "^10.4.6",
    "tslib": "^2.8.1",
    "typescript": "^6.0.3",
    "vite": "^8.1.0",
    "vitest": "^4.1.8"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=22.18.0"
  },
  "wix": {
    "artifact": {
      "groupId": "com.wixpress",
      "artifactId": "htmdx"
    }
  },
  "falconPackageHash": "92c9171c4c653d3a932ee502c1b03405a33739f3a45dbeda5a4d2642"
}