mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-05-14 14:05:08 +00:00
3f40febe60
* smp web: initial setup * encoding/decoding of LGET/LNK * SMP over websocket handshake works * parse short connection links * hkdf for short links * refactor hkdf * decrypt link data * fetch link data via websocket * signed challenge in web handshake * test: skip smp-web tests when TS not built * block encryption * gitignore * parse FixedLinkData --------- Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com>
30 lines
629 B
JSON
30 lines
629 B
JSON
{
|
|
"name": "@simplex-chat/smp-web",
|
|
"version": "0.1.0",
|
|
"description": "SMP protocol client for web/browser environments",
|
|
"license": "AGPL-3.0-only",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/simplex-chat/simplexmq.git",
|
|
"directory": "smp-web"
|
|
},
|
|
"type": "module",
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc"
|
|
},
|
|
"dependencies": {
|
|
"@noble/hashes": "^1.5.0",
|
|
"@simplex-chat/xftp-web": "file:../xftp-web"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.5.0",
|
|
"@types/ws": "^8.18.1",
|
|
"typescript": "^5.4.0",
|
|
"ws": "^8.0.0"
|
|
}
|
|
}
|