- Delete old Vite+Svelte frontend - Initialize new SvelteKit project with TypeScript - Configure Tailwind CSS v4 + DaisyUI - Implement JWT authentication with auto-refresh - Create login page with form validation (Zod) - Add protected route guards - Update Docker configuration for single-stage build - Add E2E tests with Playwright (6/11 passing) - Fix Svelte 5 reactivity with $state() runes Known issues: - 5 E2E tests failing (timing/async issues) - Token refresh implementation needs debugging - Validation error display timing
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@tanstack/table-core",
|
|
"version": "8.21.3",
|
|
"description": "Headless UI for building powerful tables & datagrids for TS/JS.",
|
|
"author": "Tanner Linsley",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/TanStack/table.git",
|
|
"directory": "packages/table-core"
|
|
},
|
|
"homepage": "https://tanstack.com/table",
|
|
"funding": {
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/tannerlinsley"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"vue",
|
|
"solid",
|
|
"table",
|
|
"table-core",
|
|
"datagrid"
|
|
],
|
|
"type": "commonjs",
|
|
"module": "build/lib/index.esm.js",
|
|
"main": "build/lib/index.js",
|
|
"types": "build/lib/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./build/lib/index.d.ts",
|
|
"import": "./build/lib/index.mjs",
|
|
"default": "./build/lib/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"sideEffects": false,
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"files": [
|
|
"build/lib/*",
|
|
"build/umd/*",
|
|
"src"
|
|
],
|
|
"scripts": {}
|
|
} |