-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.75 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
{
"name": "tanstack-table-header-rowspan",
"version": "1.0.3",
"description": "Rowspan for TanStack Table headers",
"type": "module",
"source": "src/index.ts",
"module": "dist/rowspan.esm.js",
"main": "dist/rowspan.cjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/rowspan.cjs",
"default": "./dist/rowspan.modern.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "microbundle --target web -f modern,esm,cjs",
"prepublishOnly": "npm run build && npm run test",
"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": {
"@eslint/js": "^9.8.0",
"@playwright/test": "^1.45.3",
"@tailwindcss/vite": "^4.1.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^24.0.3",
"@types/react": "^19.1.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"clsx": "^2.1.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"microbundle": "^0.15.1",
"prettier": "^3.3.3",
"prettier-plugin-multiline-arrays": "^3.0.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tailwindcss": "^4.1.4",
"vite": "^6.3.3"
},
"peerDependencies": {
"@tanstack/react-table": "^8"
}
}