mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
de9590e10e
Co-authored-by: netroy <netroy@users.noreply.github.com>
35 lines
845 B
JSON
35 lines
845 B
JSON
{
|
|
"name": "@n8n/imap",
|
|
"version": "0.6.0",
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"dev": "pnpm watch",
|
|
"typecheck": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"format": "prettier --write . --ignore-path ../../../.prettierignore",
|
|
"lint": "eslint . --quiet",
|
|
"lintfix": "eslint . --fix",
|
|
"watch": "tsc -p tsconfig.build.json --watch",
|
|
"test": "jest"
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "src/index.ts",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"dependencies": {
|
|
"iconv-lite": "0.6.3",
|
|
"imap": "0.8.19",
|
|
"quoted-printable": "1.0.1",
|
|
"utf8": "3.0.0",
|
|
"uuencode": "0.0.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/imap": "^0.8.40",
|
|
"@types/quoted-printable": "^1.0.2",
|
|
"@types/utf8": "^3.0.3",
|
|
"@types/uuencode": "^0.0.3"
|
|
}
|
|
}
|