-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@selfagency/mastofeedbot",
"version": "0.1.1",
"description": "A bot to syndicate RSS to Mastodon via GitHub Actions",
"author": "Daniel Sieradski <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/selfagency/mastofeedbot.git"
},
"keywords": [
"mastodon",
"fediverse",
"bot",
"rss"
],
"bugs": {
"url": "https://github.com/selfagency/mastofeedbot/issues"
},
"homepage": "https://github.com/selfagency/mastofeedbot#readme",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "node --es-module-specifier-resolution node esbuild.js"
},
"devDependencies": {
"@types/feedparser": "^2.2.5",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"esbuild": "^0.15.14",
"esbuild-plugin-clean": "^0.9.0",
"esbuild-plugin-copy-file": "^0.0.2",
"esbuild-plugin-fileloc": "^0.0.6",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"prettier": "^2.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@sohailalam2/abu": "^0.4.0",
"feed-reader": "^6.1.3",
"masto": "^4.6.2",
"mkdirp": "^1.0.4"
}
}