{
  "name": "gl-lite",
  "version": "0.0.2",
  "description": "A lite WebGL library for the browser",
  "author": "https://github.com/roprgm",
  "license": "MIT",
  "homepage": "https://gl-lite.dev",
  "repository": {
    "type": "git",
    "url": "https://github.com/roprgm/gl-lite.git"
  },
  "bugs": {
    "url": "https://github.com/roprgm/gl-lite/issues"
  },
  "packageManager": "bun@1.2.21",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format esm --dts --clean",
    "dev": "tsup src/index.ts --format esm --dts --clean --watch",
    "format": "prettier --write .",
    "example": "bun run build && bunx serve -p 3000",
    "preview": "bunx serve web -p 3000"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "prettier": "^3.6.2",
    "tsup": "^8.5.0"
  },
  "peerDependencies": {
    "typescript": "^5"
  },
  "keywords": [
    "webgl",
    "webgl2",
    "graphics",
    "rendering",
    "shader",
    "gpu",
    "canvas",
    "browser"
  ]
}
