{ "name": "pivot-grid-table", "version": "0.1.0-alpha.3", "description": "Open-source React data grid and pivot table with client/server pivot support, virtualization, and themeable CSS tokens.", "type": "module", "packageManager": "npm@10.9.2", "license": "MIT", "author": "Tomasz Jabłoński", "repository": { "type": "git", "url": "git+https://github.com/tjablo/pivot-data-grid.git" }, "bugs": { "url": "https://github.com/tjablo/pivot-data-grid/issues" }, "homepage": "https://pivot-data-grid.vercel.app/", "keywords": [ "pivot-table", "data-grid", "react", "virtualized", "analytics", "typescript" ], "sideEffects": [ "**/*.css" ], "files": [ "dist", "docs", "README.md", "CHANGELOG.md", "LICENSE" ], "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" }, "./tailwind-preset": { "types": "./dist/tailwind-preset.d.ts", "import": "./dist/tailwind-preset.js", "require": "./dist/tailwind-preset.cjs" }, "./styles.css": "./dist/styles.css" }, "scripts": { "dev": "vite --host 127.0.0.1", "dev:playground": "vite --host 127.0.0.1", "build": "tsup && cp src/styles.css dist/styles.css", "clean": "rm -rf dist coverage", "check": "biome check .", "lint": "biome lint .", "format": "biome format --write .", "format:check": "biome format .", "typecheck": "tsc --noEmit", "test": "vitest run", "test:watch": "vitest", "coverage": "vitest run --coverage", "release": "npm run check && npm run typecheck && npm run coverage && npm run build && npm run pack:check", "prepublishOnly": "npm run release", "pack:check": "npm pack --dry-run --cache .npm-cache" }, "dependencies": { "@radix-ui/react-dropdown-menu": "^2.1.16", "@radix-ui/react-popover": "^1.1.15", "@radix-ui/react-select": "^2.2.6", "@tanstack/react-virtual": "^3.13.24", "big.js": "^7.0.1", "clsx": "^2.1.1" }, "peerDependencies": { "react": ">=18.2.0 <20", "react-dom": ">=18.2.0 <20" }, "devDependencies": { "@biomejs/biome": "2.4.15", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@types/big.js": "^6.2.2", "@types/node": "^22.15.3", "@types/react": "^19.1.2", "@types/react-dom": "^19.1.3", "@vitest/coverage-v8": "^3.2.4", "jsdom": "^26.1.0", "react": "^19.1.0", "react-dom": "^19.1.0", "tsup": "^8.5.0", "typescript": "^5.8.3", "vite": "^7.3.3", "vitest": "^3.2.4" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=20" } }