-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 982 Bytes
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
{
"name": "tutanota-cli",
"version": "0.1.0",
"description": "CLI to authenticate with and export mail from Tutanota",
"type": "module",
"main": "dist/cli.js",
"bin": {
"tutanota-cli": "./dist/cli.js"
},
"files": ["dist", "lib"],
"scripts": {
"build": "tsc && cp -r lib dist/",
"start": "node dist/cli.js",
"auth:check": "node dist/cli.js auth check",
"test": "npm run build && node --test 'dist/**/*.test.js'"
},
"keywords": [
"tutanota",
"tuta",
"cli",
"export",
"email"
],
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"@tutao/tutanota-crypto": "327.260210.0",
"@tutao/tutanota-utils": "327.260210.0",
"argon2": "^0.44.0",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"kleur": "^4.1.5",
"read": "^1.0.7",
"undici": "^7.11.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/read": "^0.0.30",
"typescript": "^5.6.0"
}
}