{
  "name": "gl-transition",
  "version": "2.1.0",
  "description": "a light function to render a GL Transition frame with a WebGLRenderingContext",
  "license": "MIT",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "src"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "gl-shader": "^4.3.1"
  },
  "devDependencies": {
    "tsdown": "^0.22.2",
    "typescript": "^5.8.3"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gre/gl-transition-libs.git"
  },
  "bugs": {
    "url": "https://github.com/gre/gl-transition-libs/issues"
  },
  "homepage": "https://github.com/gre/gl-transition-libs#readme",
  "scripts": {
    "build": "tsdown",
    "typecheck": "tsc"
  }
}