api-not-found
Installation
SKILL.md
This skill builds on core and table-features. Treat the installed package—not remembered docs—as exact API truth.
Setup
import { readFile } from 'node:fs/promises'
const packageJson = JSON.parse(
await readFile('node_modules/@tanstack/table-core/package.json', 'utf8'),
)
const entrypoint = await readFile(
'node_modules/@tanstack/table-core/dist/index.d.ts',
'utf8',
)
console.log(packageJson.version, entrypoint.includes('rowSortingFeature'))