@tanstack/solid-table
Version:
Headless UI for building powerful tables & datagrids for Solid.
75 lines • 1.85 kB
JSON
{
"name": "@tanstack/solid-table",
"version": "9.1.2",
"description": "Headless UI for building powerful tables & datagrids for Solid.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TanStack/table.git",
"directory": "packages/solid-table"
},
"homepage": "https://tanstack.com/table",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"solid",
"table",
"solid-table",
"datagrid",
"tanstack-intent"
],
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"solid": "./dist/index.js",
"import": "./dist/index.js"
},
"./static-functions": {
"solid": "./dist/static-functions.js",
"import": "./dist/static-functions.js"
},
"./experimental-worker-plugin": {
"solid": "./dist/experimental-worker-plugin.js",
"import": "./dist/experimental-worker-plugin.js"
},
"./flex-render": {
"solid": "./dist/flex-render.js",
"import": "./dist/flex-render.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"engines": {
"node": ">=20"
},
"files": [
"dist",
"skills"
],
"dependencies": {
"@tanstack/store": "^0.11.0",
"@tanstack/table-core": "9.1.2"
},
"devDependencies": {
"@solidjs/testing-library": "^0.8.10",
"solid-js": "^1.9.14",
"vite-plugin-solid": "^2.11.14"
},
"peerDependencies": {
"solid-js": ">=1.3"
},
"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"
}
}