{
  "name": "gonia",
  "version": "0.5.2",
  "description": "A lightweight, SSR-first reactive UI library with declarative directives",
  "type": "module",
  "license": "MIT",
  "keywords": [
    "ui",
    "reactive",
    "ssr",
    "server-side-rendering",
    "hydration",
    "directives",
    "frontend",
    "framework"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/monokrome/gonia"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client/index.d.ts",
      "import": "./dist/client/index.js"
    },
    "./server": {
      "types": "./dist/server/index.d.ts",
      "import": "./dist/server/index.js"
    },
    "./directives": {
      "types": "./dist/directives/index.d.ts",
      "import": "./dist/directives/index.js"
    },
    "./vite": {
      "types": "./dist/vite/index.d.ts",
      "import": "./dist/vite/index.js"
    },
    "./ts-plugin": {
      "types": "./dist/ts-plugin/index.d.ts",
      "require": "./dist/ts-plugin/index.js"
    }
  },
  "scripts": {
    "build": "tsc && tsc -p src/ts-plugin/tsconfig.json",
    "test": "vitest run",
    "test:watch": "vitest",
    "check:dupes": "jscpd"
  },
  "dependencies": {
    "happy-dom": "^20.8.9",
    "tinyglobby": "^0.2.15"
  },
  "peerDependencies": {
    "vite": ">=5.0.0"
  },
  "peerDependenciesMeta": {
    "vite": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "@vitest/coverage-v8": "^4.0.17",
    "jscpd": "^4.0.8",
    "jsdom": "^27.4.0",
    "typescript": "^5.7.0",
    "vite": "^6.4.0",
    "vitest": "^4.0.17"
  }
}
