Files
turso/bindings/wasm/package.json
Pekka Enberg 40f517b03f Fix Wasm packaging
The `wasm-pack` too has a known bug where it forgets to add snippets to
`package.json`:

https://github.com/rustwasm/wasm-pack/issues/1206

Let's fix that with some bash magic.
2024-11-13 11:28:22 +02:00

21 lines
367 B
JSON

{
"name": "limbo-wasm",
"collaborators": [
"the Limbo authors"
],
"version": "0.0.4",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/penberg/limbo"
},
"files": [
"snippets",
"limbo_wasm_bg.wasm",
"limbo_wasm.js",
"limbo_wasm.d.ts"
],
"main": "limbo_wasm.js",
"types": "limbo_wasm.d.ts"
}