{
  "name": "flexium-canvas",
  "version": "0.18.0",
  "description": "Canvas and interactive modules for Flexium - WebGL, keyboard, mouse, and game loop",
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./dom": {
      "types": "./dist/dom.d.ts",
      "import": "./dist/dom.mjs",
      "require": "./dist/dom.js"
    },
    "./interactive": {
      "types": "./dist/interactive.d.ts",
      "import": "./dist/interactive.mjs",
      "require": "./dist/interactive.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "flexium",
    "canvas",
    "webgl",
    "game",
    "game-loop",
    "keyboard",
    "mouse",
    "interactive",
    "2d",
    "graphics"
  ],
  "author": "Flexium Contributors",
  "license": "MIT",
  "homepage": "https://flexium.junhyuk.im",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Wick-Lim/flexium.js.git"
  },
  "bugs": {
    "url": "https://github.com/Wick-Lim/flexium.js/issues"
  },
  "peerDependencies": {
    "flexium": ">=0.17.2"
  },
  "devDependencies": {
    "@flexium/tsconfig": "workspace:*",
    "@types/node": "^20.10.0",
    "@vitest/coverage-v8": "^2.1.9",
    "jsdom": "^24.1.3",
    "tsup": "^8.0.0",
    "typescript": "^5.3.0",
    "vitest": "^2.1.9"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
