Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,19 @@

- `pnpm build` でビルドすること

## 型チェックについて

- `tsconfig.json` の `skipLibCheck` を `true` にしないこと
- `pnpm typecheck` で型チェックを実行し、問題がある場合は修正すること

## フォーマッターについて

- `pnpm fmt` でフォーマッターを実行すること

## リンターについて

- `pnpm lint` でリンターを実行し、問題がある場合は修正すること

## コミットについて

- 勝手にコミットしないこと
Expand Down
11 changes: 11 additions & 0 deletions biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@
"lineWidth": 100
}
},
"css": {
"parser": {
"cssModules": false
},
"linter": {
"enabled": false
},
"formatter": {
"enabled": false
}
},
"javascript": {
"formatter": {
"enabled": true,
Expand Down
22 changes: 2 additions & 20 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,26 +54,8 @@
</head>

<body>
<div class="container">
<h1>DuckDB-Wasm (OPFS) + Parquet + S3-compatible object storage</h1>
<h2>GitHub: <a
href="https://github.com/voluntas/duckdb-wasm-parquet">https://github.com/voluntas/duckdb-wasm-parquet</a></h2>
<h3 id="duckdb-version"></h3>
<h3 id="duckdb-wasm-version"></h3>
<h3 id="opfsStatus">OPFS: false</h3>
<h3 id="counted">Counted: 0</h3>
<div id="editor"></div>
<button id="fetch-parquet">Fetch Parquet</button>
<button id="samples">Samples (1%)</button>
<button id="samples-download-parquet">Samples (1%) Download Parquet</button>
<button id="aggregation">Aggregation</button>
<button id="purge">Purge</button>
<br>
<input type="text" id="search" placeholder="インスタント検索...">
<div id="result"></div>
</div>

<script type="module" src="./src/main.ts"></script>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>

</html>
23 changes: 19 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
"version": "0.0.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"test:vitest": "vitest run",
"test:playwright": "playwright test",
"build": "vite build",
"lint": "biome lint src/",
"fmt": "pnpm biome format --write src/ tests/",
"check": "tsc --noEmit"
"fmt": "biome format --write src/",
"fmt:check": "biome format src/",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=24",
Expand All @@ -26,14 +29,26 @@
"@duckdb/duckdb-wasm": "1.29.1-dev269.0",
"@replit/codemirror-vim": "6.3.0",
"apache-arrow": "21.0.0",
"codemirror": "6.0.2"
"codemirror": "6.0.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"uplot": "1.6.32",
"wouter": "3.7.1",
"zustand": "5.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@playwright/test": "1.54.2",
"@tailwindcss/vite": "4.1.12",
"@types/emscripten": "^1.40.1",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@vitejs/plugin-react": "5.0.0",
"fast-check": "4.2.0",
"playwright": "1.54.2",
"tailwindcss": "4.1.12",
"typescript": "5.9.2",
"vite": "7.1.2",
"vitest": "3.2.4"
}
}
}
Loading