-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.93 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "nextjs-reusable-table",
"version": "3.0.1",
"main": "index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist/index.css"
],
"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": "echo \"Error: no test specified\" && exit 1",
"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"
},
"author": "ninsau",
"license": "ISC",
"description": "A highly customizable and reusable table component for Next.js applications, built with TypeScript and the latest technologies.",
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@types/react": "^18.3.9",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"react-loading-skeleton": "^3.5.0",
"tailwindcss": "^3.4.13",
"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",
"reusable component",
"component",
"ui component",
"data grid",
"data display",
"data visualization",
"frontend",
"frontend component",
"react component",
"nextjs component",
"typescript component",
"npm package",
"reusable",
"customizable",
"responsive",
"ui library",
"data",
"table component",
"action dropdown",
"skeleton loader",
"no content component",
"modern",
"tailwindcss",
"open source"
]
}