mtcute/packages/wasm/package.json
alina sireneva baef78403e
chore!: migrated proxies to fuman
breaking: http-proxy, socks-proxy and mtproxy packages are deprecated, proxified implementations are available in runtime-specific packages
2024-09-29 04:13:50 +03:00

27 lines
705 B
JSON

{
"name": "@mtcute/wasm",
"type": "module",
"version": "0.17.0-fuman-alpha",
"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": {
"docs": "typedoc",
"build": "pnpm run -w build-package wasm",
"build:wasm": "docker build --output=lib --target=binaries lib"
},
"devDependencies": {
"@mtcute/core": "workspace:^",
"@mtcute/node": "workspace:^",
"@mtcute/web": "workspace:^"
},
"jsrOnlyFields": {
"exports": "./src/index.ts"
}
}