forked from andris9/imap-autoconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "@ankaboot.io/imap-autoconfig",
"description": "Detect IMAP configuration for an e-mail address",
"version": "0.2.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"url": "https://github.com/ankaboot-source/imap-autoconfig"
},
"scripts": {
"lint": "eslint --fix src",
"build": "tsup",
"test": "jest"
},
"keywords": [
"imap",
"auto-detect",
"auto-config"
],
"author": "Ankaboot.io",
"license": "MIT",
"dependencies": {
"axios": "^1.8.4",
"fast-xml-parser": "^5.0.9",
"imapflow": "^1.0.184",
"tsup": "^8.4.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@types/imap": "^0.8.42",
"@types/imapflow": "^1.0.20",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.14",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"ts-jest": "^29.3.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
},
"publishConfig": {
"access": "public"
}
}