{
  "name": "@arcmantle/lit-jsx",
  "version": "1.1.19",
  "description": "A JSX runtime and compiler that transforms JSX into Lit templates.",
  "repository": {
    "type": "git",
    "url": "https://github.com/arcmantle/lit-jsx.git"
  },
  "license": "Apache-2.0",
  "author": "Kristoffer Roen-Lie",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": "./dist/utils.js",
    "./jsx-runtime": "./src/shared/jsx-types.ts",
    "./jsx-dev-runtime": "./src/shared/jsx-types.ts",
    "./vite": "./dist/compiler/vite-plugin.js"
  },
  "main": "./dist/react-jsx/jsx-runtime.js",
  "types": "./dist/shared/jsx-types.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@babel/core": "^7.28.5",
    "@babel/plugin-syntax-jsx": "^7.18.6",
    "@babel/traverse": "^7.28.5",
    "@babel/types": "^7.28.5",
    "@types/babel__core": "^7.20.5",
    "@types/babel__traverse": "^7.20.7",
    "csstype": "^3.2.3",
    "deepmerge-ts": "^7.1.5",
    "lit-html": "^3.3.1",
    "oxc-resolver": "^11.15.0",
    "validate-html-nesting": "^1.2.4"
  },
  "devDependencies": {
    "@arcmantle/tsconfig": "^1.0.9",
    "@types/node": "^25.0.3",
    "oxc-parser": "^0.103.0",
    "oxc-walker": "^0.6.0",
    "rimraf": "^6.1.2",
    "typedoc": "^0.28.15",
    "typedoc-plugin-markdown": "^4.9.0",
    "typescript": "^5.9.3",
    "vite": "^7.3.0",
    "vitepress": "^1.6.4",
    "vitest": "^4.0.16"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "rimraf dist && tsc --project ./src/tsconfig.json",
    "dev": "vite build --watch --mode=development",
    "docs:build": "typedoc --options docs/typedoc.json && vitepress build docs",
    "docs:dev": "vitepress dev docs",
    "docs:preview": "vitepress preview docs",
    "docs:typedoc": "typedoc --options docs/typedoc.json",
    "test": "pnpm vitest run"
  }
}