Gitignores
Some checks failed
CI / rustfmt (push) Has been cancelled
CI / clippy (push) Has been cancelled
CI / test (push) Has been cancelled
CI / wasm build (push) Has been cancelled
CI / cargo-deny (push) Has been cancelled

This commit is contained in:
Alex Emmet 2026-06-27 02:00:42 +02:00
commit 43f028a1f6
13 changed files with 1914 additions and 15 deletions

15
wasm/pkg/package.json Normal file
View file

@ -0,0 +1,15 @@
{
"name": "mtp-wasm",
"type": "module",
"version": "0.1.0",
"files": [
"mtp_wasm_bg.wasm",
"mtp_wasm.js",
"mtp_wasm.d.ts"
],
"main": "mtp_wasm.js",
"types": "mtp_wasm.d.ts",
"sideEffects": [
"./snippets/*"
]
}