Files
smartimap/package.json
T

71 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2024-09-19 10:33:57 +02:00
{
"name": "@push.rocks/smartimap",
2026-05-01 16:59:04 +00:00
"version": "1.2.1",
2024-09-19 10:33:57 +02:00
"private": false,
"description": "A Node.js library for event-driven streaming and parsing of IMAP email messages.",
"exports": {
".": "./dist_ts/index.js"
},
2024-09-19 10:33:57 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2024-09-19 10:33:57 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2024-09-19 10:33:57 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2024-09-19 10:33:57 +02:00
},
"dependencies": {
"@types/mailparser": "^3.4.6",
"imapflow": "^1.3.3",
"mailparser": "^3.9.8"
2024-09-19 10:33:57 +02:00
},
"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",
".smartconfig.json",
"license",
2024-09-19 10:33:57 +02:00
"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 10:33:57 +02:00
]
2024-09-19 12:59:15 +02:00
}