forked from TanStack/table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "@tanstack/react-table",
"version": "9.0.0-beta.58",
"description": "Headless UI for building powerful tables & datagrids for React.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/table.git",
"directory": "packages/react-table"
},
"homepage": "https://tanstack.com/table",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"react",
"table",
"react-table",
"datagrid",
"tanstack-intent"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./experimental-worker-plugin": "./dist/experimental-worker-plugin.js",
"./flex-render": "./dist/flex-render.js",
"./legacy": "./dist/legacy.js",
"./static-functions": "./dist/static-functions.js",
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"files": [
"dist",
"skills"
],
"scripts": {
"clean": "rimraf ./build && rimraf ./dist",
"test:eslint": "eslint ./src",
"test:lib": "vitest --passWithNoTests",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "tsdown"
},
"dependencies": {
"@tanstack/react-store": "^0.11.0"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.9.2",
"@types/react": "^19.2.17",
"@vitejs/plugin-react": "^6.0.3",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"eslint-plugin-react-hooks": "^7.1.1",
"react": "^19.2.7"
},
"peerDependencies": {
"@tanstack/table-core": "workspace:*",
"react": ">=18"
}
}