-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.6 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.6 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
{
"name": "tanstack-table-header-rowspan",
"version": "1.0.11",
"description": "Rowspan for TanStack Table headers",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"lint": "biome lint ./src",
"format": "biome format --write ./src",
"dev": "vite e2e --port 8080",
"test": "npm run test/build && playwright test",
"test/build": "vite build e2e",
"test/ui": "playwright test --ui"
},
"repository": {
"type": "git",
"url": "https://github.com/Roman86/tanstack-table-header-rowspan.git"
},
"keywords": [
"tanstack",
"table",
"header",
"rowspan",
"groups",
"nesting",
"nested",
"columns"
],
"author": "Roman Kozodoi",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "latest",
"@playwright/test": "^1.45.3",
"@tailwindcss/vite": "^4.1.4",
"@types/node": "^22.1.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.4",
"tsup": "^8.5.0",
"typescript": "^5.9.3",
"vite": "^6.3.3"
},
"peerDependencies": {
"@tanstack/react-table": "^8"
},
"overrides": {
"js-yaml": "^4.1.1",
"glob": "^11.1.0"
}
}