import { SlippiGame } from "npm:@slippi/slippi-js"; import { Buffer } from "node:buffer"; const fileData = Deno.readFileSync("c:/2026/26 CODE/26 JUN/JUL26/Game_20260401T103302.slp"); const game = new SlippiGame(Buffer.from(fileData)); const frames = game.getFrames(); for (const i in frames) { if (frames[i].players) { for (const p in frames[i].players) { console.log(JSON.stringify(frames[i].players[p].pre, null, 2)); Deno.exit(0); } } }