{
  "name": "@ktjs/core",
  "version": "0.40.26",
  "description": "Core functionality for kt.js - DOM manipulation utilities with JSX/TSX support",
  "description_zh": "kt.js 的核心功能，提供支持 JSX/TSX 的 DOM 操作工具。",
  "type": "module",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    },
    "./jsx": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./jsx-runtime": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./jsx-dev-runtime": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "dom",
    "dom-manipulation",
    "framework",
    "web"
  ],
  "license": "MIT",
  "author": {
    "name": "Kasukabe Tsumugi",
    "email": "futami16237@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/baendlorel/kt.js",
    "directory": "packages/core"
  },
  "peerDependencies": {
    "@ktjs/shared": "^*"
  },
  "scripts": {
    "build": "rollup -c rollup.config.mjs",
    "dev": "rollup -c rollup.config.mjs -w"
  }
}