mtcute/packages/wasm/package.json

24 lines
594 B
JSON
Raw Normal View History

2023-11-04 06:44:18 +03:00
{
2024-08-21 11:05:07 +03:00
"name": "@mtcute/wasm",
"type": "module",
2024-12-31 00:58:57 +03:00
"version": "0.19.0",
2024-08-21 11:05:07 +03:00
"private": true,
"description": "WASM implementation of common algorithms used in Telegram",
"author": "alina sireneva <alina@tei.su>",
"license": "MIT",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./mtcute.wasm": "./src/mtcute.wasm"
},
"scripts": {
"build:wasm": "docker build --output=lib --target=binaries lib"
},
"devDependencies": {
"@mtcute/core": "workspace:^",
"@mtcute/node": "workspace:^",
"@mtcute/web": "workspace:^",
2024-12-26 20:01:01 +03:00
"@fuman/utils": "0.0.4"
2024-08-21 11:05:07 +03:00
}
2023-11-04 06:44:18 +03:00
}