UNPKG

@czkoudy/data-table

Version:

A React data table component with pagination, sorting, and filtering capabilities.

92 lines (91 loc) 2.48 kB
{ "name": "@czkoudy/data-table", "version": "1.0.11", "description": "A React data table component with pagination, sorting, and filtering capabilities.", "author": "czkoudy", "type": "module", "private": false, "repository": "czkoudy/data-table", "license": "MIT", "keywords": [ "React", "Table", "Data Table", "DataGrid", "Pagination" ], "publishConfig": { "access": "public" }, "scripts": { "dev": "vite", "build": "vite build", "lint": "eslint .", "preview": "vite preview", "semantic-release": "semantic-release", "prepare": "pnpm run build", "commit": "git-cz", "acp": "git pull && git add . && pnpm run commit && git push" }, "dependencies": { "react": "^18.3.1", "react-dom": "^18.3.1" }, "devDependencies": { "@eslint/js": "^9.33.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^11.1.0", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^11.0.3", "@semantic-release/release-notes-generator": "^12.1.0", "@types/node": "^24.3.0", "@types/react": "^19.1.10", "@types/react-dom": "^19.1.7", "@typescript-eslint/eslint-plugin": "^8.40.0", "@typescript-eslint/parser": "^8.40.0", "@vitejs/plugin-react": "^5.0.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.33.0", "eslint-plugin-perfectionist": "^4.15.0", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-react": "^7.37.5", "eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-react-refresh": "^0.4.20", "eslint-plugin-unused-imports": "^4.2.0", "git-cz": "^4.9.0", "globals": "^16.3.0", "jiti": "^2.5.1", "prettier": "3.6.2", "semantic-release": "^24.1.0", "typescript": "~5.8.3", "typescript-eslint": "^8.40.0", "vite": "^7.1.2", "vite-plugin-dts": "^4.5.4" }, "peerDependencies": { "@tanstack/react-table": "^8.21.3", "date-fns": "^4.1.0", "react": "^18.3.1", "react-dom": "^18.3.1" }, "files": [ "dist", "README.md" ], "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.es.js", "require": "./dist/index.umd.js" }, "./style.css": "./dist/index.css" }, "main": "./dist/index.umd.js", "module": "./dist/index.es.js", "types": "./dist/index.d.ts", "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }