{
  "name": "vanjs-htm",
  "author": "VoidedClouds",
  "license": "MIT",
  "version": "1.2.0",
  "description": "HTM with VanJS for JSX-like syntax in vanilla JavaScript using VanJS reactivity.",
  "files": [
    "dist",
    "types"
  ],
  "jsdelivr": "./dist/van-htm.js",
  "types": "./types/van-htm.d.ts",
  "main": "./dist/van-htm.js",
  "module": "./dist/van-htm.module.js",
  "exports": {
    ".": {
      "types": "./types/van-htm.d.ts",
      "import": "./dist/van-htm.module.js",
      "require": "./dist/van-htm.cjs"
    },
    "./dev": {
      "types": "./types/van-htm.d.ts",
      "import": "./dist/van-htm.dev.module.js"
    },
    "./withDecoding": {
      "types": "./types/van-htm.d.ts",
      "import": "./dist/withDecoding/van-htm.module.js",
      "require": "./dist/withDecoding/van-htm.cjs"
    }
  },
  "scripts": {
    "build": "npm run build:js && npm run types",
    "build:js": "rimraf dist && tsup",
    "test": "vitest run --coverage tests",
    "sandbox": "vite --config sandbox/vite.config.ts",
    "tsc": "tsc --noEmit -p tsconfig.build.json",
    "types": "rimraf types && tsc -p tsconfig.build.json && mv types/index.d.ts types/van-htm.d.ts"
  },
  "devDependencies": {
    "@types/node": "^22.15.12",
    "@vitest/coverage-v8": "^3.1.3",
    "htm": "^3.1.1",
    "html-entities": "^2.6.0",
    "jest-extended": "^4.0.2",
    "jsdom": "^26.1.0",
    "rimraf": "^6.0.1",
    "tsup": "^8.4.0",
    "typescript": "^5.8.3",
    "vanjs-core": "^1.5.5",
    "vanjs-ext": "^0.6.2",
    "vite": "^6.3.5",
    "vitest": "^3.1.3"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/VoidedClouds/van-htm"
  },
  "bugs": {
    "url": "https://github.com/VoidedClouds/van-htm/issues"
  },
  "keywords": [
    "HTM",
    "VanJS",
    "VanX"
  ]
}
