-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "anyone-chat",
"version": "1.0.0",
"description": "End-to-end encrypted messenger over Anyone Protocol hidden services. Your .anyone address is your identity.",
"main": "server.js",
"type": "commonjs",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/xmranonp/anyone-chat.git"
},
"author": "xmranonp <xmranonp@users.noreply.github.com>",
"keywords": [
"encrypted-messenger",
"e2ee",
"double-ratchet",
"x3dh",
"anyone-protocol",
"onion-routing",
"privacy"
],
"scripts": {
"start": "node start.js",
"web": "node server.js",
"test": "node tools/run-checks.mjs",
"test:crypto": "node tools/crypto-interop-test.mjs",
"checksums": "node tools/release-checksums.mjs"
},
"dependencies": {
"express": "4.21.2",
"axios": "^1.7.2",
"socks-proxy-agent": "^8.0.4",
"ws": "^8.18.0"
},
"engines": {
"node": ">=22.12.0"
},
"overrides": {
"path-to-regexp": "0.1.13",
"qs": "6.15.2"
}
}