{
"name": "txcript",
"version": "0.1.0",
"description": "Convert AI coding-agent session transcripts between harness formats (WASM).",
"license": "Apache-2.0",
"main": "pkg/txcript.js",
"types": "pkg/txcript.d.ts",
"files": [
"pkg"
],
"scripts": {
"setup": "rustup target add wasm32-unknown-unknown && cargo install wasm-bindgen-cli --version 0.2.126 --locked",
"build": "cargo build --lib --release --target wasm32-unknown-unknown --no-default-features --features wasm && wasm-bindgen target/wasm32-unknown-unknown/release/txcript.wasm --out-dir pkg --target nodejs",
"prepare": "bun run build"
}
}