forked from neferin12/matrix-studrss-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "matrix-studrss",
"version": "1.1.0",
"description": "Ein Bot, der aus dem Studon RSS Feed liest und die Nachrichten in einen Matrix Chat schickt",
"main": "dist/src/index.js",
"scripts": {
"test": "eslint .",
"build": "tsc -p tsconfig.json",
"start": "node .",
"serve": "nodemon",
"serve:2": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neferin12/matrix-studrss-bot.git"
},
"keywords": [
"matrix",
"rss",
"bot",
"studon"
],
"author": "Julian Pollinger",
"license": "MIT",
"bugs": {
"url": "https://github.com/neferin12/matrix-studrss-bot/issues"
},
"homepage": "https://github.com/neferin12/matrix-studrss-bot#readme",
"dependencies": {
"dotenv": "^8.6.0",
"matrix-bot-sdk": "^0.6.5",
"rss-parser": "^3.13.0",
"simple-json-db": "^1.3.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"nodemon": "^2.0.22",
"ts-node": "^9.1.1",
"typescript": "^4.9.5"
}
}