UNPKG

explore-tables

Version:

A React component library for building interactive pivot tables focused on data analysis and visualization. Perfect for creating in-house analytics dashboards and ad-hoc data exploration pages.

93 lines (92 loc) 2.41 kB
{ "name": "explore-tables", "version": "0.0.7", "homepage": "https://bozerkins.github.io/explore-tables/", "repository": { "type": "git", "url": "https://github.com/bozerkins/explore-tables" }, "type": "module", "main": "dist/main.js", "types": "dist/main.d.ts", "license": "GPL-3.0-only", "files": [ "dist" ], "exports": { ".": { "import": "./dist/main.js", "require": "./dist/main.cjs" }, "./*.css": { "import": "./dist/*.css", "require": "./dist/*.css" } }, "keywords": [ "react", "table", "tables", "drag-and-drop", "typescript", "react-component", "data-table", "grid", "datagrid", "sortable", "ui-component", "react-table", "responsive-table" ], "scripts": { "dev": "vite -c vite-app.config.js", "lib-build": "tsc --p ./tsconfig.build.json && vite build -c vite-lib.config.js", "lib-deploy": "npm publish --provenance --access public", "app-build": "tsc --p ./tsconfig.app.json && vite build -c vite-app.config.js", "app-deploy": "gh-pages -d dist-app", "lint": "eslint .", "preview": "vite preview", "build": "npm run lib-build", "prepublishOnly": "npm run build", "test": "jest", "test:watch": "jest --watch" }, "peerDependencies": { "react": "^18 || ^19", "react-dom": "^18 || ^19" }, "sideEffects": [ "**/*.css" ], "devDependencies": { "@atlaskit/pragmatic-drag-and-drop": "^1.4.0", "@eslint/js": "^9.13.0", "@testing-library/jest-dom": "^6.6.3", "@testing-library/react": "^16.3.0", "@types/jest": "^29.5.14", "@types/node": "^22.9.0", "@types/prismjs": "^1.26.5", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "@vitejs/plugin-react": "^4.3.3", "eslint": "^9.13.0", "eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react-refresh": "^0.4.14", "gh-pages": "^6.2.0", "globals": "^15.11.0", "jest": "^29.7.0", "jest-environment-jsdom": "^29.7.0", "postcss-normalize": "^13.0.1", "prismjs": "^1.29.0", "react": "^18.3.1", "react-dnd": "^16.0.1", "react-dnd-html5-backend": "^16.0.1", "react-dom": "^18.3.1", "react-router-dom": "^6.28.0", "ts-jest": "^29.3.2", "typescript": "~5.6.2", "typescript-eslint": "^8.11.0", "vite": "^5.4.10", "vite-plugin-dts": "^4.3.0" } }