-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 926 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "simplex-js",
"version": "1.0.0",
"description": "Pure JavaScript implementation of the SimpleX Messaging Protocol. WebSocket transport, E2E encryption, X3DH, Double Ratchet, AES-256-GCM.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/", "README.md"],
"scripts": {
"build": "node esbuild.config.mjs",
"prepublishOnly": "npm run build"
},
"keywords": ["simplex","smp","encrypted","e2e","x3dh","double-ratchet","websocket","privacy"],
"author": "Sascha Daemgen <info@it-and-more.systems>",
"license": "AGPL-3.0",
"homepage": "https://github.com/saschadaemgen/simplex-js",
"repository": {"type": "git", "url": "git+https://github.com/saschadaemgen/simplex-js.git"},
"devDependencies": {"esbuild": "^0.20.0", "typescript": "^5.4.0"},
"dependencies": {"@noble/curves": "^1.4.0", "@noble/hashes": "^1.4.0", "@noble/ciphers": "^0.5.0", "tweetnacl": "^1.0.3"}
}