Files
hakorune/projects/nyash-wasm/pkg/package.json
Moe Charm ee59c4ee60 🚀 fix: WebAssembly成果物を追加してプレイグラウンド修正
 修正内容:
• pkg/nyash_rust.js - WebAssembly JSバインディング
• pkg/nyash_rust_bg.wasm - コンパイル済みWASM実行ファイル
• TypeScript型定義ファイル

🎯 これでブラウザーでNyashが正常動作します!
GitHub Pages完全対応完了
2025-08-09 15:26:35 +09:00

31 lines
614 B
JSON

{
"name": "nyash-rust",
"type": "module",
"collaborators": [
"Claude Code <claude@anthropic.com>"
],
"description": "Everything is Box in Rust - Ultimate Memory Safe Nyash Implementation",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/user/nyash"
},
"files": [
"nyash_rust_bg.wasm",
"nyash_rust.js",
"nyash_rust.d.ts"
],
"main": "nyash_rust.js",
"types": "nyash_rust.d.ts",
"sideEffects": [
"./snippets/*"
],
"keywords": [
"language",
"interpreter",
"box",
"memory-safe",
"rust"
]
}