generated from pascal-giguere/starter-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mastofeed",
"version": "1.6.0",
"description": "A Node.js / TypeScript library to post RSS feed items to Mastodon. Outputs rich, highly-customizable posts.",
"author": "Pascal Giguère",
"homepage": "https://github.com/pascal-giguere/mastofeed#readme",
"license": "GPL-3.0-only",
"keywords": [
"mastodon",
"rss",
"feed",
"bot",
"automation",
"nodejs",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/pascal-giguere/mastofeed.git"
},
"packageManager": "yarn@4.2.2",
"engines": {
"node": ">=18",
"npm": "please-use-yarn",
"yarn": "4.2.2"
},
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist/",
"prepack": "yarn run clean && yarn run build",
"test:unit": "jest --config test/unit/jest.config.ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^18.19.34",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"chalk": "^4.1.2",
"html-entities": "^2.5.2",
"lodash": "^4.17.21",
"megalodon": "^8.1.6",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.13.0"
}
}