2020-03-18 03:19:05 +01:00
|
|
|
{
|
2021-03-09 23:04:05 +01:00
|
|
|
"name": "kill-the-newsletter",
|
2021-03-18 23:42:15 +01:00
|
|
|
"version": "1.0.1",
|
2021-03-09 23:04:05 +01:00
|
|
|
"description": "Convert email newsletters into Atom feeds",
|
|
|
|
"keywords": [
|
|
|
|
"newsletter",
|
|
|
|
"atom feeds",
|
2021-03-14 22:52:23 +01:00
|
|
|
"news",
|
|
|
|
"self-hosted",
|
|
|
|
"web application"
|
2021-03-09 23:04:05 +01:00
|
|
|
],
|
2022-10-31 20:37:52 +01:00
|
|
|
"homepage": "https://kill-the-newsletter.com",
|
|
|
|
"repository": "https://github.com/leafac/kill-the-newsletter",
|
2021-03-09 23:04:05 +01:00
|
|
|
"bugs": "https://github.com/leafac/kill-the-newsletter/issues",
|
2022-10-13 22:06:00 +02:00
|
|
|
"funding": [
|
|
|
|
"https://patreon.com/leafac",
|
|
|
|
"https://paypal.me/LeandroFacchinettiEU",
|
|
|
|
"https://github.com/sponsors/leafac",
|
|
|
|
"https://btc.com/34KJBgtaFYMtDqpSgMayw9qiKWg2GQXA9M"
|
|
|
|
],
|
2022-10-31 20:37:52 +01:00
|
|
|
"author": "Leandro Facchinetti <kill-the-newsletter@leafac.com> (https://leafac.com)",
|
|
|
|
"license": "MIT",
|
|
|
|
"bin": "./build/index.mjs",
|
2020-03-18 03:19:05 +01:00
|
|
|
"scripts": {
|
2021-09-04 14:28:21 +02:00
|
|
|
"start": "node-dev source/index.ts",
|
2021-09-04 14:26:26 +02:00
|
|
|
"test": "prettier --check \"source/**/*\" --end-of-line auto && jest",
|
2021-03-09 23:04:05 +01:00
|
|
|
"prepare": "tsc"
|
2020-03-18 03:19:05 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-03-09 23:04:05 +01:00
|
|
|
"@leafac/css": "^0.0.1",
|
2021-03-17 16:49:43 +01:00
|
|
|
"@leafac/html": "^3.0.0",
|
2021-03-09 23:04:05 +01:00
|
|
|
"@leafac/sqlite": "^1.1.2",
|
|
|
|
"@leafac/sqlite-migration": "^1.0.3",
|
2021-03-16 02:51:03 +01:00
|
|
|
"@small-tech/auto-encrypt": "^2.0.5",
|
2021-03-09 23:04:05 +01:00
|
|
|
"crypto-random-string": "^3.3.1",
|
2020-03-18 03:19:05 +01:00
|
|
|
"express": "^4.17.1",
|
2021-03-10 11:30:08 +01:00
|
|
|
"fs-extra": "^9.1.0",
|
2021-03-09 23:04:05 +01:00
|
|
|
"mailparser": "^3.1.0",
|
2021-03-11 12:19:23 +01:00
|
|
|
"smtp-server": "^3.8.0",
|
|
|
|
"tagged-template-noop": "^2.1.1"
|
2020-03-18 03:19:05 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-03-09 23:04:05 +01:00
|
|
|
"@types/express": "^4.17.11",
|
2021-03-10 11:30:08 +01:00
|
|
|
"@types/fs-extra": "^9.0.8",
|
2021-09-04 14:26:26 +02:00
|
|
|
"@types/jest": "^27.0.1",
|
2021-03-09 23:04:05 +01:00
|
|
|
"@types/mailparser": "^3.0.2",
|
|
|
|
"@types/node": "^14.14.33",
|
2020-03-19 05:20:28 +01:00
|
|
|
"@types/nodemailer": "^6.4.0",
|
2021-03-09 23:04:05 +01:00
|
|
|
"@types/smtp-server": "^3.5.6",
|
|
|
|
"caxa": "^1.0.0",
|
|
|
|
"got": "^11.8.2",
|
2021-09-04 14:26:26 +02:00
|
|
|
"jest": "^27.1.0",
|
2021-09-04 14:28:21 +02:00
|
|
|
"node-dev": "^7.0.0",
|
2021-03-09 23:04:05 +01:00
|
|
|
"nodemailer": "^6.4.18",
|
|
|
|
"prettier": "^2.2.1",
|
2021-09-04 14:26:26 +02:00
|
|
|
"ts-jest": "^27.0.5",
|
2021-03-09 23:04:05 +01:00
|
|
|
"ts-node": "^9.1.1",
|
|
|
|
"typescript": "^4.2.3"
|
2020-03-18 03:19:05 +01:00
|
|
|
}
|
|
|
|
}
|