UNPKG

nextjs-reusable-table

Version:

A production-ready, highly customizable and reusable table component for Next.js applications. Features include sorting, pagination, search, dark mode, TypeScript support, and zero dependencies.

106 lines (105 loc) 2.72 kB
{ "name": "nextjs-reusable-table", "version": "3.7.0", "main": "index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "dist/index.css", "README.md", "EXAMPLES.md", "API.md", "TROUBLESHOOTING.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/ninsau/nextjs-reusable-table.git" }, "bugs": { "url": "https://github.com/ninsau/nextjs-reusable-table/issues" }, "homepage": "https://github.com/ninsau/nextjs-reusable-table#readme", "scripts": { "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:ci": "jest --ci --coverage --watchAll=false", "build": "tsup src/index.ts --format esm,cjs --dts && npm run build:css", "build:css": "tailwindcss -i src/styles/tableStyles.css -o dist/index.css --minify", "lint": "biome lint .", "lint:fix": "biome lint --write .", "format": "biome format --write .", "check": "biome check .", "check:fix": "biome check --write .", "prepublishOnly": "npm run build" }, "author": "ninsau", "license": "ISC", "description": "A production-ready, highly customizable and reusable table component for Next.js applications. Features include sorting, pagination, search, dark mode, TypeScript support, and zero dependencies.", "dependencies": { "react": ">=16", "react-dom": ">=16" }, "devDependencies": { "@biomejs/biome": "^2.2.0", "@testing-library/jest-dom": "^6.8.0", "@testing-library/react": "^16.3.0", "@testing-library/user-event": "^14.6.1", "@types/jest": "^30.0.0", "@types/react": "^18.3.9", "@types/react-dom": "^18.3.0", "autoprefixer": "^10.4.20", "identity-obj-proxy": "^3.0.0", "jest": "^30.0.5", "jest-environment-jsdom": "^30.0.5", "postcss": "^8.4.47", "react-loading-skeleton": "^3.5.0", "tailwindcss": "^3.4.13", "ts-jest": "^29.4.1", "tsup": "^8.3.0", "typescript": "^5.6.2" }, "peerDependencies": { "next": ">=12", "react": ">=16", "react-dom": ">=16", "tailwindcss": ">=2.0.0" }, "keywords": [ "nextjs", "next.js", "react", "typescript", "table", "data-table", "datagrid", "grid", "component", "ui-component", "data-grid", "data-display", "sorting", "pagination", "search", "filter", "responsive", "tailwindcss", "dark-mode", "accessibility", "a11y", "production-ready", "zero-dependencies", "tree-shakable", "customizable", "reusable", "modern", "performant", "tested", "enterprise", "dashboard", "admin", "crud" ] }