{
  "name": "@pvotly/web",
  "version": "0.1.1",
  "description": "Framework-agnostic pivot table UI: drag-and-drop field list, grid renderer, filters, conditional formatting, export and themes. Built on @pvotly/core.",
  "license": "MIT",
  "homepage": "https://artainjast.github.io/pvotly/",
  "author": "pvotly contributors",
  "type": "module",
  "sideEffects": [
    "**/*.css"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./styles.css": "./dist/index.css",
    "./global": "./dist/pvotly.global.js",
    "./global.css": "./dist/pvotly.global.css",
    "./umd": "./dist/pvotly.umd.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "pivot",
    "pivot-table",
    "pivot-grid",
    "drag-and-drop",
    "data-grid",
    "olap"
  ],
  "dependencies": {
    "@pvotly/core": "0.1.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/artainjast/pvotly.git",
    "directory": "packages/web"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup && node scripts/wrap-umd.mjs",
    "dev": "tsup --watch",
    "test": "vitest run",
    "typecheck": "tsc --noEmit"
  }
}