@forgedevstack/grid-table 1.0.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 +91 -0
- package/README.md +253 -0
- package/dist/index.d.mts +999 -0
- package/dist/index.d.ts +999 -0
- package/dist/index.js +2806 -0
- package/dist/index.mjs +2754 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@forgedevstack/grid-table",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A powerful, headless grid table component for React with Tailwind CSS styling, drag-and-drop columns, filtering, sorting, and responsive mobile support",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./hooks": {
|
|
15
|
+
"types": "./dist/hooks/index.d.ts",
|
|
16
|
+
"import": "./dist/hooks/index.mjs",
|
|
17
|
+
"require": "./dist/hooks/index.js"
|
|
18
|
+
},
|
|
19
|
+
"./context": {
|
|
20
|
+
"types": "./dist/context/index.d.ts",
|
|
21
|
+
"import": "./dist/context/index.mjs",
|
|
22
|
+
"require": "./dist/context/index.js"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"files": [
|
|
26
|
+
"dist",
|
|
27
|
+
"README.md",
|
|
28
|
+
"CHANGELOG.md"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
32
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
33
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
36
|
+
"release": "npm run build && npm publish --access public",
|
|
37
|
+
"release:patch": "npm version patch && npm run release",
|
|
38
|
+
"release:minor": "npm version minor && npm run release",
|
|
39
|
+
"release:major": "npm version major && npm run release"
|
|
40
|
+
},
|
|
41
|
+
"keywords": [
|
|
42
|
+
"react",
|
|
43
|
+
"table",
|
|
44
|
+
"grid",
|
|
45
|
+
"data-table",
|
|
46
|
+
"tailwind",
|
|
47
|
+
"typescript",
|
|
48
|
+
"drag-drop",
|
|
49
|
+
"sorting",
|
|
50
|
+
"filtering",
|
|
51
|
+
"pagination",
|
|
52
|
+
"responsive",
|
|
53
|
+
"headless"
|
|
54
|
+
],
|
|
55
|
+
"author": "John Yaghobieh",
|
|
56
|
+
"license": "MIT",
|
|
57
|
+
"repository": {
|
|
58
|
+
"type": "git",
|
|
59
|
+
"url": "https://github.com/yaghobieh/grid-table.git"
|
|
60
|
+
},
|
|
61
|
+
"bugs": {
|
|
62
|
+
"url": "https://github.com/yaghobieh/grid-table/issues"
|
|
63
|
+
},
|
|
64
|
+
"homepage": "https://forgestack.dev/table",
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": ">=16.8.0",
|
|
67
|
+
"react-dom": ">=16.8.0"
|
|
68
|
+
},
|
|
69
|
+
"peerDependenciesMeta": {
|
|
70
|
+
"react": {
|
|
71
|
+
"optional": false
|
|
72
|
+
},
|
|
73
|
+
"react-dom": {
|
|
74
|
+
"optional": false
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"devDependencies": {
|
|
78
|
+
"@types/react": "^18.2.0",
|
|
79
|
+
"@types/react-dom": "^18.2.0",
|
|
80
|
+
"react": "^18.2.0",
|
|
81
|
+
"react-dom": "^18.2.0",
|
|
82
|
+
"tsup": "^8.0.0",
|
|
83
|
+
"typescript": "^5.3.0"
|
|
84
|
+
}
|
|
85
|
+
}
|