UNPKG

nextjs-table

Version:

Modern, customizable data table component for Next.js with CRUD operations

74 lines (73 loc) 1.82 kB
{ "name": "nextjs-table", "version": "1.0.0", "description": "Modern, customizable data table component for Next.js with CRUD operations", "type": "module", "main": "dist/index.js", "module": "dist/index.esm.js", "types": "dist/index.d.ts", "files": [ "dist/**/*.js", "dist/**/*.d.ts", "dist/**/*.map", "README.md" ], "scripts": { "dev": "next dev", "build": "next build", "build:lib": "rollup -c", "build:watch": "rollup -c -w", "start": "next start", "lint": "next lint", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build:lib" }, "keywords": [ "nextjs", "react", "table", "datatable", "crud", "component", "typescript", "tailwindcss" ], "author": "Kenan Gündoğan", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/eglador/nextjs-table.git" }, "bugs": { "url": "https://github.com/eglador/nextjs-table/issues" }, "homepage": "https://github.com/eglador/nextjs-table#readme", "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "dependencies": { "clsx": "^2.1.1" }, "devDependencies": { "@eslint/eslintrc": "^3", "@rollup/plugin-commonjs": "^25.0.7", "@rollup/plugin-node-resolve": "^15.2.3", "@rollup/plugin-typescript": "^11.1.5", "@tailwindcss/postcss": "^4", "@types/node": "^20", "@types/react": "^19", "@types/react-dom": "^19", "eslint": "^9", "eslint-config-next": "15.3.3", "next": "15.3.3", "react": "^19.0.0", "react-dom": "^19.0.0", "rollup": "^4.9.0", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", "tailwindcss": "^4", "typescript": "^5" } }