blurhash-c-wasm/package.json
Fries 986912c2aa make initial memory smaller and let it grow
i also enabled lto building which should make performance better.
2023-08-14 22:19:45 -07:00

21 lines
538 B
JSON

{
"type": "module",
"name": "@fries/blurhash-c-wasm",
"version": "0.1.1",
"description": "A WASM module using the Blurhash C library",
"main": "dist/blurhash-c-wasm.cjs",
"module": "dist/blurhash-c-wasm.js",
"types": "dist/library.d.ts",
"scripts": {
"build": "make && rollup -c rollup.config.js",
"prepublishOnly": "pnpm build"
},
"author": "Fries",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@rollup/plugin-wasm": "^6.1.3",
"rollup": "^3.28.0",
"typescript": "^5.1.6",
"tslib": "^2.6.1"
}
}