-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "@ixo/matrix-sled-migration",
"version": "1.1.1",
"author": "Ixo Foundation",
"license": "Apache-2.0",
"description": "CLI tool to migrate Matrix bot encryption keys from Sled to SQLite via server-side key backup",
"main": "lib/index.js",
"bin": {
"matrix-sled-migration": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ixoworld/matrix-sled-migration-tool"
},
"keywords": [
"matrix",
"encryption",
"migration",
"sled",
"sqlite",
"e2ee",
"backup"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node lib/index.js",
"dev": "npx ts-node src/index.ts"
},
"files": [
"lib/**/*",
"scripts/**/*",
"rust-key-extractor/**/*",
"README.md"
],
"dependencies": {
"@ixo/matrix-sdk-crypto-nodejs": "^0.4.2",
"bs58": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}