-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.99 KB
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": "@stereopt/data-table",
"version": "0.3.0",
"description": "Simple reusable React data table component",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./tailwind-source.css": "./dist/tailwind-source.css"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"dev": "tsup --watch",
"format": "biome format ./src",
"format:fix": "biome format ./src --write",
"lint": "biome lint ./src && next lint",
"lint:fix": "biome lint ./src --write && next lint",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"react",
"table",
"data-table",
"component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/StereoPT/data-table.git"
},
"homepage": "https://github.com/StereoPT/data-table#readme",
"bugs": {
"url": "https://github.com/StereoPT/data-table/issues"
},
"license": "MIT",
"dependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"postcss": "^8.5.9",
"react-day-picker": "^9.13.2",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"postcss-cli": "^11.0.1",
"lucide-react": "^0.574.0",
"radix-ui": "^1.4.3",
"tailwindcss": "^4.2.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}