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": {
|
2022-11-02 20:09:06 +01:00
|
|
|
"postinstall": "(cd ./server/ && npm install && cd ..) && (cd ./static/ && npm install && cd ..)",
|
|
|
|
"prepare": "(cd ./server/ && npm run prepare && cd ..) && (cd ./static/ && npm run prepare && cd ..)",
|
|
|
|
"start": "nodemon --watch \"./server/**/*.mts\" --watch \"./static/{{prepare,leafac--javascript}.mjs,**/*.{png,jpeg,ico}}\" --watch \"./configuration/**/*.mjs\" --ext \"*\" --exec \"npm run prepare && node ./build/server/index.mjs ./configuration/development.mjs\"",
|
|
|
|
"start:clean:data": "npm run clean:data && npm run start",
|
|
|
|
"test": "prettier --check \"./server/**/*.mts\" --check \"./static/prepare.mjs\" --check \"./configuration/**/*.mjs\" --end-of-line auto",
|
|
|
|
"clean:all": "npm run clean:build && npm run clean:data && npm run clean:node_modules",
|
|
|
|
"clean:build": "shx rm -rf ./build/",
|
|
|
|
"clean:data": "shx rm -rf ./data/",
|
|
|
|
"clean:node_modules": "shx rm -rf ./node_modules/ ./server/node_modules/ ./static/node_modules/",
|
|
|
|
"update": "npm-check-updates --upgrade && (cd ./server/ && npm-check-updates --upgrade && cd ..) && (cd ./static/ && npm-check-updates --upgrade && cd ..) && npm install"
|
2020-03-18 03:19:05 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-02 19:53:09 +01:00
|
|
|
"@leafac/caddy": "^1.0.5",
|
|
|
|
"@leafac/css": "^0.7.0",
|
|
|
|
"@leafac/html": "^3.0.3",
|
|
|
|
"@leafac/javascript": "^0.2.13",
|
|
|
|
"@leafac/sqlite": "^3.2.2",
|
|
|
|
"commander": "^9.4.1",
|
|
|
|
"crypto-random-string": "^5.0.0",
|
|
|
|
"express": "^4.18.2",
|
|
|
|
"mailparser": "^3.5.0",
|
|
|
|
"smtp-server": "^3.11.0"
|
2020-03-18 03:19:05 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-02 19:53:09 +01:00
|
|
|
"caxa": "^3.0.1",
|
|
|
|
"got": "^12.5.2",
|
|
|
|
"nodemailer": "^6.8.0",
|
|
|
|
"nodemon": "^2.0.20",
|
2022-11-02 20:16:30 +01:00
|
|
|
"npm-check-updates": "^16.3.16",
|
|
|
|
"prettier": "^2.7.1",
|
|
|
|
"shx": "^0.3.4"
|
2020-03-18 03:19:05 +01:00
|
|
|
}
|
|
|
|
}
|