@tanstack/angular-table
Version:
Headless UI for building powerful tables & datagrids for Angular.
84 lines • 2.53 kB
JSON
{
"name": "@tanstack/angular-table",
"version": "9.1.2",
"description": "Headless UI for building powerful tables & datagrids for Angular.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/table.git",
"directory": "packages/angular-table"
},
"homepage": "https://tanstack.com/table",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"angular",
"table",
"angular-table",
"datagrid",
"tanstack-intent"
],
"type": "module",
"module": "dist/fesm2022/tanstack-angular-table.mjs",
"types": "dist/types/tanstack-angular-table.d.ts",
"exports": {
".": {
"types": "./dist/types/tanstack-angular-table.d.ts",
"default": "./dist/fesm2022/tanstack-angular-table.mjs"
},
"./static-functions": {
"types": "./dist/types/tanstack-angular-table-static-functions.d.ts",
"default": "./dist/fesm2022/tanstack-angular-table-static-functions.mjs"
},
"./experimental-worker-plugin": {
"types": "./dist/types/tanstack-angular-table-experimental-worker-plugin.d.ts",
"default": "./dist/fesm2022/tanstack-angular-table-experimental-worker-plugin.mjs"
},
"./flex-render": {
"types": "./dist/types/tanstack-angular-table.d.ts",
"default": "./dist/fesm2022/tanstack-angular-table.mjs"
},
"./package.json": {
"default": "./package.json"
}
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"static-functions",
"skills"
],
"dependencies": {
"@tanstack/angular-store": "^0.11.0",
"tslib": "^2.8.1",
"@tanstack/table-core": "9.1.2"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.6.4",
"@analogjs/vitest-angular": "^2.6.4",
"@angular/compiler": "^22.1.0",
"@angular/core": "^22.1.0",
"@angular/platform-browser": "^22.1.0",
"ng-packagr": "^22.1.0",
"typescript": "6.0.3"
},
"peerDependencies": {
"@angular/core": ">=19"
},
"sideEffects": false,
"scripts": {
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./dist/package.json && find dist -name '*.map' -delete",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf ./build && rimraf ./dist",
"test:build": "publint --strict",
"test:eslint": "eslint ./src",
"test:lib": "vitest",
"test:lib:dev": "vitest --watch",
"test:types": "tsc && vitest --typecheck"
}
}