react-table-craft 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +407 -0
- package/dist/index.d.mts +639 -0
- package/dist/index.d.ts +639 -0
- package/dist/index.js +3487 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3431 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +76 -0
package/package.json
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "react-table-craft",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "A production-ready, framework-agnostic React data table system built on TanStack Table. Fully typed, tree-shakeable, and feature-rich.",
|
|
5
|
+
"main": "./dist/index.cjs",
|
|
6
|
+
"module": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.cjs"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"sideEffects": false,
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE",
|
|
20
|
+
"CHANGELOG.md"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"dev": "tsup --watch",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"clean": "rimraf dist",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"react",
|
|
31
|
+
"table",
|
|
32
|
+
"data-table",
|
|
33
|
+
"tanstack",
|
|
34
|
+
"datagrid",
|
|
35
|
+
"typescript",
|
|
36
|
+
"tailwindcss",
|
|
37
|
+
"pagination",
|
|
38
|
+
"sorting",
|
|
39
|
+
"filtering"
|
|
40
|
+
],
|
|
41
|
+
"author": "Ahmed Elkhdrawy",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": ">=18",
|
|
45
|
+
"react-dom": ">=18"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@radix-ui/react-checkbox": "^1.1.4",
|
|
49
|
+
"@radix-ui/react-dropdown-menu": "^2.1.6",
|
|
50
|
+
"@radix-ui/react-popover": "^1.1.6",
|
|
51
|
+
"@radix-ui/react-select": "^2.1.6",
|
|
52
|
+
"@radix-ui/react-separator": "^1.1.2",
|
|
53
|
+
"@radix-ui/react-slot": "^1.1.2",
|
|
54
|
+
"@radix-ui/react-tooltip": "^1.1.8",
|
|
55
|
+
"@tanstack/react-table": "^8.21.2",
|
|
56
|
+
"class-variance-authority": "^0.7.1",
|
|
57
|
+
"clsx": "^2.1.1",
|
|
58
|
+
"cmdk": "^1.0.4",
|
|
59
|
+
"date-fns": "^4.1.0",
|
|
60
|
+
"export-to-csv": "^1.4.0",
|
|
61
|
+
"lucide-react": "^0.474.0",
|
|
62
|
+
"tailwind-merge": "^2.6.0",
|
|
63
|
+
"vaul": "^1.1.2"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/node": "^25.3.0",
|
|
67
|
+
"@types/react": "^18.3.0",
|
|
68
|
+
"@types/react-dom": "^18.3.0",
|
|
69
|
+
"tsup": "^8.4.0",
|
|
70
|
+
"typescript": "^5.7.0"
|
|
71
|
+
},
|
|
72
|
+
"repository": {
|
|
73
|
+
"type": "git",
|
|
74
|
+
"url": "https://github.com/Ahmed-Elkhdrawy/table-craft.git"
|
|
75
|
+
}
|
|
76
|
+
}
|