Skip to content
Merged
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
2 changes: 1 addition & 1 deletion docs/adr/0004-verifier-checkpoint-stance.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@

## References

- 検証エンジン: [`packages/verify/src/core/VerificationEngine.ts`](../../packages/verify/src/core/VerificationEngine.ts)
- 検証エンジン: [`packages/verify/src/workers/verificationWorker.ts`](../../packages/verify/src/workers/verificationWorker.ts) (PR #252 以降は shared の `verifyProofFile` へ委譲)
- shared 検証ロジック: [`packages/shared/src/verification.ts`](../../packages/shared/src/verification.ts)
- ChainVerifier: [`packages/shared/src/typingProof/ChainVerifier.ts`](../../packages/shared/src/typingProof/ChainVerifier.ts)
- PR #60 (Harden proof verification)
Expand Down
8 changes: 5 additions & 3 deletions packages/editor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
| C++ | Wasmer SDK | Clang++ WASM |
| Python | Wasmer SDK | Python WASM ランタイム |
| JavaScript | ネイティブ | ブラウザ eval + console キャプチャ |
| TypeScript | SWC | JS にトランスパイルしてから eval |
| TypeScript | typescript (`ts.transpileModule`) | JS にトランスパイルしてから eval |

## 開発

Expand Down Expand Up @@ -126,13 +126,15 @@ __BUILD_DATE__ // ビルド時刻

| パッケージ | バージョン | 用途 |
|---------|---------|---------|
| monaco-editor | ^0.55 | コードエディタ本体 |
| monaco-editor | ^0.56 | コードエディタ本体 |
| @xterm/xterm | ^6.0 | ターミナルエミュレータ |
| @xterm/addon-fit | ^0.11 | ターミナルの自動リサイズ |
| @wasmer/sdk | ^0.10 | WebAssembly ランタイム |
| dompurify | ^3.4 | 問題パネルの markdown 描画のサニタイズ |
| jszip | ^3.10 | ZIP エクスポート |
| marked | ^18.0 | 問題パネルの markdown 描画 |
| yaml | ^2.9 | テンプレート YAML 解析 |
| vite | ^8.0 | ビルドツール (rolldown) |
| vite | ^8.1 | ビルドツール (rolldown) |
| vite-plugin-wasm | ^3.6 | WASM サポート |

## スクリーンショット機能
Expand Down
2 changes: 1 addition & 1 deletion packages/verify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const handle = await showDirectoryPicker();
| diff | ^9.0 | 差分計算 |
| highlight.js | ^11.11 | シンタックスハイライト |
| jszip | ^3.10 | ZIP の解凍 |
| vite | ^8.0 | ビルドツール |
| vite | ^8.1 | ビルドツール |

## 環境変数

Expand Down
Loading