MastodonBot/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2023-01-14 03:23:40 +01:00
{
"name": "mastodon-bot",
2024-12-26 17:21:14 +01:00
"version": "0.0.5",
2023-01-14 03:23:40 +01:00
"author": "Pietervdvn",
"license": "GPL",
"description": "Experimenting with mastodon-bot",
"repository": "https://github.com/pietervdvn/matrix-bot",
"bugs": {
"url": "https://github.com/pietervdvn/matrix-bot/issues"
},
"keywords": [
"Mastodon",
"OpenStreetMap",
"bot"
],
"scripts": {
"build": "tsc",
"lint": "tslint --project ./tsconfig.json -t stylish",
2023-01-14 20:20:43 +01:00
"start": "ts-node src/index.ts",
2024-10-07 21:50:29 +02:00
"daily": "git pull && npm ci && ts-node src/index.ts 2>&1 | tee -a log_`date --iso-8601`.txt"
2023-01-14 03:23:40 +01:00
},
"dependencies": {
"@types/node-fetch": "^2.6.2",
"@types/showdown": "^2.0.0",
"@xmldom/xmldom": "^0.8.6",
2023-01-14 03:23:40 +01:00
"doctest-ts-improved": "^0.8.7",
"escape-html": "^1.0.3",
"fake-dom": "^1.0.4",
"fs": "^0.0.1-security",
"https": "^1.0.0",
"masto": "^5.4.0",
"mocha": "^10.0.0",
"node-fetch": "^3.3.0",
"panoramax-js": "^0.3.7",
2023-01-14 03:23:40 +01:00
"showdown": "^2.1.0",
2024-10-07 21:50:29 +02:00
"ts-node": "^10.9.2"
2023-01-14 03:23:40 +01:00
},
"devDependencies": {
"@types/mocha": "^9.1.1",
2024-10-07 21:50:29 +02:00
"@types/node": "^14.18.63",
2023-01-14 03:23:40 +01:00
"tslint": "^6.1.3",
"typescript": "^4.7.4"
}
}