Files
smartmail/package.json
T

66 lines
1.6 KiB
JSON
Raw Normal View History

2018-09-29 23:57:25 +02:00
{
2023-07-10 10:16:18 +02:00
"name": "@push.rocks/smartmail",
2026-04-30 07:41:09 +00:00
"version": "2.2.1",
2018-09-29 23:57:25 +02:00
"private": false,
2024-04-14 17:55:42 +02:00
"description": "A unified format for representing and dealing with emails, with support for attachments and email validation.",
2020-06-18 16:19:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-08-07 11:38:07 +02:00
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
2018-09-29 23:57:25 +02:00
"scripts": {
"test": "(tstest test/ --verbose)",
"build": "tsbuild",
2022-08-07 11:38:07 +02:00
"buildDocs": "tsdoc"
2018-09-29 23:57:25 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2018-09-29 23:57:25 +02:00
},
2019-10-26 23:45:35 +02:00
"dependencies": {
"@push.rocks/smartdns": "^7.9.0",
"@push.rocks/smartfile": "^13.1.3",
2023-07-28 05:49:44 +02:00
"@push.rocks/smartmustache": "^3.0.2",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrequest": "^5.0.1"
2019-10-26 23:45:35 +02:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-18 16:24:28 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-10-26 23:45:35 +02:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
2019-10-26 23:45:35 +02:00
"readme.md"
2022-08-07 11:38:07 +02:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 17:55:42 +02:00
],
"keywords": [
"email handling",
"email validation",
"email formatting",
"typescript",
"email attachment",
"smartmail",
"email development",
"email template",
"disposable email detection",
"freemail detection"
2024-05-29 14:14:32 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartmail",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartmail.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartmail/issues"
},
"packageManager": "pnpm@10.28.2"
}