-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.13 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.13 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@dtelecom/secure-chat-client",
"version": "0.13.5",
"description": "TypeScript SDK for dTelecom secure 1:1 chat (E2E via Olm/vodozemac, fanout multi-device).",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"imports": {
"#vodozemac": {
"react-native": "@dtelecom/vodozemac-rn",
"default": "@dtelecom/vodozemac-wasm"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"prepublishOnly": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:browser": "vitest run -c vitest.browser.config.ts",
"smoke:wallet": "tsx scripts/smoke-wallet.ts",
"smoke:transport": "tsx scripts/smoke-transport.ts",
"smoke:cross-node": "tsx scripts/smoke-cross-node.ts",
"smoke:auth": "tsx scripts/smoke-auth.ts",
"smoke:fanout": "tsx scripts/smoke-fanout.ts",
"smoke:ephemeral": "tsx scripts/smoke-ephemeral.ts",
"smoke:offline-fallback": "tsx scripts/smoke-offline-fallback.ts",
"smoke:push-gating": "tsx scripts/smoke-push-gating.ts",
"smoke:edit-delete-authz": "tsx scripts/smoke-edit-delete-authz.ts",
"smoke:read-typing": "tsx scripts/smoke-read-typing.ts",
"smoke:fwd-compat": "tsx scripts/smoke-fwd-compat.ts",
"smoke:crash-recovery": "tsx scripts/smoke-crash-recovery.ts",
"smoke:node-failure": "tsx scripts/smoke-node-failure.ts",
"smoke:history-reload": "tsx scripts/smoke-history-reload.ts",
"smoke:multi-device-sender": "tsx scripts/smoke-multi-device-sender.ts",
"smoke:multidevice-online-offline": "tsx scripts/smoke-multidevice-online-offline.ts",
"smoke:self-echo": "tsx scripts/smoke-self-echo.ts",
"smoke:peer-new-device": "tsx scripts/smoke-peer-new-device.ts",
"smoke:otk-exhaustion": "tsx scripts/smoke-otk-exhaustion.ts",
"smoke:read-receipts-gating": "tsx scripts/smoke-read-receipts-gating.ts",
"smoke:conversations": "tsx scripts/smoke-conversations.ts",
"smoke:idle": "tsx scripts/smoke-idle.ts",
"smoke:all": "tsx scripts/smoke-all.ts"
},
"keywords": [
"dtelecom",
"chat",
"e2ee",
"olm",
"matrix"
],
"author": "dTelecom <dev@dtelecom.org>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/dTelecom/secure-chat-client.git"
},
"homepage": "https://github.com/dTelecom/secure-chat-client#readme",
"dependencies": {
"@dtelecom/vodozemac-wasm": "^0.3.0",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.5.0",
"bs58": "^6.0.0"
},
"peerDependencies": {
"@dtelecom/vodozemac-rn": "^0.1.0"
},
"peerDependenciesMeta": {
"@dtelecom/vodozemac-rn": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.0.0",
"@vitest/browser": "^3.2.4",
"playwright": "^1.59.1",
"tsup": "^8.0.0",
"tsx": "^4.7.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}