{
  "name": "@sondr3/radiant",
  "version": "0.3.1",
  "description": "A simple, type-safe, and functional way to create HTML documents in TypeScript.",
  "keywords": [
    "html",
    "dsl",
    "typescript",
    "type-safe",
    "template"
  ],
  "author": "Sondre Aasemoen <sondre@eons.io> (https://www.eons.io)",
  "homepage": "https://github.com/sondr3/radiant#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sondr3/radiant.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/sondr3/radiant/issues"
  },
  "type": "module",
  "engines": {
    "node": ">=18.0.0",
    "pnpm": ">=9.0.0"
  },
  "sideEffects": false,
  "files": [
    "src",
    "dist",
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "package.json"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./sitemap": {
      "types": "./dist/sitemap.d.ts",
      "default": "./dist/sitemap.js"
    }
  },
  "devDependencies": {
    "@biomejs/biome": "1.8.3",
    "@tsconfig/node22": "22.0.0",
    "@tsconfig/recommended": "1.0.7",
    "@tsconfig/strictest": "2.0.5",
    "@types/node": "22.0.0",
    "@vitest/coverage-v8": "2.0.5",
    "lefthook": "1.7.11",
    "tsx": "4.16.3",
    "typescript": "5.5.4",
    "vitest": "2.0.5"
  },
  "dependencies": {
    "camelcase": "8.0.0",
    "stringify-entities": "4.0.4",
    "type-fest": "4.23.0"
  },
  "scripts": {
    "dev": "tsc --watch --incremental",
    "build": "tsc",
    "release": "tsc -p tsconfig.release.json",
    "check": "biome check",
    "fix": "biome check --write",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "gen": "pnpm gen:tags && pnpm gen:elems",
    "gen:tags": "tsx ./scripts/element_generator.mts",
    "gen:elems": "tsx ./scripts/tag_generator.mts"
  }
}