{
  "name": "regl-scatterplot-oscar",
  "version": "1.0.0",
  "description": "A WebGL-Powered Scalable Interactive Scatter Plot Library",
  "author": "Fritz Lekschas",
  "keywords": [
    "scatterplot",
    "2d scatter",
    "interactive data visualization",
    "regl",
    "WebGL",
    "embedding plot"
  ],
  "license": "MIT",
  "type": "module",
  "main": "dist/regl-scatterplot.js",
  "module": "dist/regl-scatterplot.esm.js",
  "types": "dist/regl-scatterplot.esm.d.ts",
  "files": [
    "src/*",
    "dist/*"
  ],
  "scripts": {
    "build": "npm run build-library; npm run build-demo",
    "build-library": "rm -rf dist/*; rollup -c; cp src/types.d.ts dist/; sed -i 's/\\.\\/renderer/\\.\\/regl-scatterplot.esm/g' dist/types.d.ts; tsc dist/*.esm.js --allowJs --declaration --emitDeclarationOnly",
    "build-demo": "vite build",
    "deploy": "npm run build-demo; touch docs/.nojekyll; gh-pages -d docs -t --git git",
    "lint": "biome check --write .",
    "precommit": "npm run test",
    "prepublishOnly": "npm run test; rm -rf dist/*; npm run build;",
    "prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
    "pretest": "npm run lint",
    "prestart": "cp scripts/pre-commit .git/hooks/ && chmod +x .git/hooks/pre-commit && echo 'pre-commit hook copied'",
    "start": "vite --port=3000",
    "test": "vitest run",
    "coverage": "vitest run --coverage"
  },
  "dependencies": {
    "@flekschas/utils": "^0.32.2",
    "dom-2d-camera": "^2.2.6",
    "earcut": "^3.0.1",
    "gl-matrix": "~3.4.3",
    "pub-sub-es": "~3.0.0",
    "regl": "~2.1.1",
    "regl-line": "~1.1.1"
  },
  "peerDependencies": {
    "pub-sub-es": "~3.0.0",
    "regl": "~2.1.1"
  },
  "devDependencies": {
    "@babel/core": "^7.26.0",
    "@babel/plugin-transform-regenerator": "^7.25.9",
    "@babel/polyfill": "^7.12.1",
    "@babel/preset-env": "^7.26.0",
    "@biomejs/biome": "^1.9.4",
    "@rollup/plugin-babel": "^6.0.3",
    "@rollup/plugin-commonjs": "^28.0.1",
    "@rollup/plugin-json": "^6.0.0",
    "@rollup/plugin-node-resolve": "^15.3.0",
    "@rollup/plugin-terser": "^0.4.3",
    "@tweakpane/core": "^2.0.5",
    "@types/d3-scale": "^4.0.6",
    "@types/node": "^22.9.3",
    "@vitest/browser": "^3.0.9",
    "@vitest/coverage-v8": "^3.0.9",
    "apache-arrow": "^18.0.0",
    "browser-env": "^3.3.0",
    "d3-axis": "^3.0.0",
    "d3-random": "^3.0.1",
    "d3-scale": "^4.0.2",
    "d3-selection": "^3.0.0",
    "esm": "^3.2.25",
    "gh-pages": "^6.2.0",
    "merge": "^2.1.1",
    "playwright": "^1.49.0",
    "rollup": "^4.27.4",
    "rollup-plugin-filesize": "^10.0.0",
    "tweakpane": "^4.0.5",
    "typescript": "~5.7.2",
    "vite": "^6.2.3",
    "vite-plugin-virtual-html-template": "^1.1.0",
    "vitest": "^3.0.9"
  },
  "engines": {
    "npm": ">=7.0.0",
    "node": ">=20.0.0"
  },
  "homepage": "https://github.com/askartemir/regl-scatterplot2",
  "repository": {
    "type": "git",
    "url": "git://github.com/askartemir/regl-scatterplot2.git"
  },
  "bugs": {
    "url": "https://github.com/askartemir/regl-scatterplot2/issues"
  }
}
