-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.59 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
{
"name": "backmail",
"version": "0.1.0",
"description": "Backup mail to git",
"keywords": [
"imap",
"email",
"backup",
"git",
"cli"
],
"author": "Jan Hapke",
"license": "MIT",
"homepage": "https://github.com/janhapke/backmail#readme",
"repository": {
"type": "git",
"url": "https://github.com/janhapke/backmail.git"
},
"bugs": {
"url": "https://github.com/janhapke/backmail/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"type": "module",
"bin": {
"backmail": "./dist/cli/index.js"
},
"main": "./dist/core/index.js",
"exports": {
".": "./dist/core/index.js"
},
"scripts": {
"dev": "tsx src/cli/index.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "bash scripts/test-integration.sh",
"typecheck": "tsc --noEmit",
"imap:clear": "tsx scripts/clear-imap.ts"
},
"devDependencies": {
"@types/mailparser": "^3.4.6",
"@types/node": "25.6.0",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.1.5",
"tsx": "4.21.0",
"typescript": "6.0.3",
"vitest": "^4.1.5"
},
"dependencies": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@inquirer/prompts": "^8.4.2",
"@napi-rs/keyring": "^1.2.0",
"commander": "14.0.3",
"imapflow": "1.3.2",
"mailparser": "^3.9.8",
"simple-git": "3.36.0",
"slugify": "^1.6.9",
"turndown": "^7.2.4",
"turndown-plugin-gfm": "^1.0.2",
"zod": "^4.3.6"
}
}