chore: upgrade deps

This commit is contained in:
Wlad Meixner 2023-12-02 15:25:31 +01:00
parent c164fbedad
commit 9b45d822c5
4 changed files with 813 additions and 613 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -15,48 +15,48 @@
"format": "prettier --plugin-search-dir . --write ."
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.25.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.10.0",
"@playwright/test": "^1.40.1",
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.27.6",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte3": "^4.0.0",
"gh-pages": "^6.0.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^3.59.2",
"svelte-check": "^3.5.2",
"gh-pages": "^6.1.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.8",
"svelte-check": "^3.6.2",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.25.8"
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vitest": "^0.34.6"
},
"type": "module",
"dependencies": {
"@duckdb/duckdb-wasm": "^1.27.0",
"@fontsource/inter": "^5.0.8",
"@duckdb/duckdb-wasm": "^1.28.0",
"@fontsource/inter": "^5.0.15",
"@sveltejs/adapter-static": "^2.0.3",
"@tweenjs/tween.js": "^21.0.0",
"@types/d3": "^7.4.1",
"@types/papaparse": "^5.3.9",
"@types/three": "^0.152.1",
"apache-arrow": "^12.0.1",
"@types/d3": "^7.4.3",
"@types/papaparse": "^5.3.14",
"@types/three": "^0.159.0",
"apache-arrow": "^14.0.1",
"autoprefixer": "^10.4.16",
"d3": "^7.8.5",
"deep-object-diff": "^1.1.9",
"feather-icons": "^4.29.1",
"monaco-editor": "^0.40.0",
"monaco-sql-languages": "0.12.0-beta.1",
"monaco-editor": "^0.44.0",
"monaco-sql-languages": "0.12.0-beta.7",
"papaparse": "^5.4.1",
"postcss": "^8.4.31",
"sass": "^1.68.0",
"postcss": "^8.4.32",
"sass": "^1.69.5",
"stats.js": "^0.17.0",
"svelte-feather-icons": "^4.0.1",
"svelte-icons-pack": "^2.1.0",
"tailwindcss": "^3.3.3",
"three": "^0.154.0",
"tailwindcss": "^3.3.5",
"three": "^0.159.0",
"three.meshline": "^1.4.0",
"web-worker": "^1.2.0"
}

File diff suppressed because it is too large Load Diff

View File

@ -1,58 +0,0 @@
// Fetch all available data entries
import { base } from '$app/paths';
import type { Load } from '@sveltejs/kit';
import parseDataset from '../../dataset/tumPartitionParser.server';
export type DataEntry = {
name: string;
fixture: string;
filterName: string;
infoUrl: string;
dataUrl: string;
};
export type EntryDefinition = {
name: string;
iterations: number;
preprocess: string;
fixture: string;
generator: string;
// FIXME: add missing fields maybe generate even
};
export type FilterEntry = {
name: string;
entries: DataEntry[];
};
export type DatasetSample = {
name: string;
path: string;
entries: DataEntry[];
};
export type FsFile = {
name: string;
path: string;
};
export type FsDirectory = {
name: string;
path: string;
children: (FsFile | FsDirectory)[];
};
export type Dataset = FsFile | FsDirectory;
const datasetPath = '/static/dataset';
export const load: Load = async ({ params }) => {
const dataset = parseDataset(`.${datasetPath}`);
return {
dataset
// data: dataEntries,
// filters: filters
};
};