-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.4 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "tw-table",
"version": "1.0.9-beta",
"description": "table designed with tailwind and tanstack-table.",
"keywords": [
"react",
"table",
"tailwind",
"tanstack-table",
"typescript"
],
"author": "Vitor Schirmer",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/tw-table.esm.js",
"files": [
"dist",
"src"
],
"size-limit": [
{
"path": "./dist/tw-table.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "./dist/tw-table.esm.js",
"limit": "10 KB"
}
],
"typings": "./dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"format": "prettier --log-level warn --write \"{src}/**/*.{tsx,ts}\""
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"@tanstack/react-table": "^8.20.5",
"clsx": "^2.1.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@size-limit/preset-small-lib": "^11.1.6",
"@storybook/addon-essentials": "^8.4.4",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-interactions": "^8.4.4",
"@storybook/addon-links": "^8.4.4",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/addon-webpack5-compiler-babel": "3.0.3",
"@storybook/addons": "^7.6.17",
"@storybook/builder-vite": "^8.4.4",
"@storybook/cli": "^8.4.4",
"@storybook/react": "^8.4.4",
"@storybook/react-vite": "^8.4.4",
"@storybook/test": "^8.4.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"husky": "^9.1.7",
"postcss": "^8.4.49",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"rollup-plugin-postcss": "^4.0.2",
"size-limit": "^11.1.6",
"tailwindcss": "^3.4.15",
"tsdx": "^0.14.1",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"peerDependencies": {
"@tanstack/react-table": "^8.20.5",
"react": ">=18.3.1"
}
}