smartimap/package.json

69 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2024-09-19 08:33:57 +00:00
{
"name": "@push.rocks/smartimap",
2024-09-19 10:59:15 +00:00
"version": "1.1.0",
2024-09-19 08:33:57 +00:00
"private": false,
"description": "A Node.js library for event-driven streaming and parsing of IMAP email messages.",
2024-09-19 08:33:57 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
"@push.rocks/tapbundle": "^5.3.0",
"@types/node": "^22.5.5"
},
"dependencies": {
"@types/imapflow": "^1.0.19",
"@types/mailparser": "^3.4.4",
"imapflow": "^1.0.164",
"mailparser": "^3.7.1"
},
"repository": {
"type": "git",
"url": "git+https://code.foss.global/push.rocks/smartimap.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartimap/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartimap#readme",
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"keywords": [
"imap",
"email",
"streaming",
"mailparser",
"email-client",
"nodejs",
"event-driven",
"automation",
"message-stream",
"filter",
"inbox",
"connection",
"message processing"
2024-09-19 08:33:57 +00:00
]
2024-09-19 10:59:15 +00:00
}