-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.24 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
{
"name": "mailbak",
"version": "0.2.2",
"description": "Universal email backup and migration CLI tool for Gmail, SpaceMail, and IMAP servers - Built with Bun!",
"type": "module",
"module": "src/index.ts",
"bin": {
"mailbak": "bin/mailbak.ts"
},
"scripts": {
"dev": "bun run bin/mailbak.ts",
"build": "bun build bin/mailbak.ts --outdir=dist --target=bun --entrypoints bin/mailbak.ts",
"test": "bun test",
"test:watch": "bun test --watch"
},
"keywords": [
"email",
"backup",
"migration",
"gmail",
"imap",
"mbox",
"cli",
"bun",
"tui",
"cyberpunk",
"spacemail"
],
"author": "codingstark-dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codingstark-dev/backupmail.git"
},
"bugs": {
"url": "https://github.com/codingstark-dev/backupmail/issues"
},
"homepage": "https://github.com/codingstark-dev/backupmail#readme",
"dependencies": {
"@opentui/core": "^0.1.72",
"googleapis": "^144.0.0",
"imap": "^0.8.19",
"mailbak": "^0.2.0",
"mailparser": "^3.7.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/imap": "^0.8.40",
"@types/mailparser": "^3.4.6",
"typescript": "^5"
}
}