-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "telegram-rss-bot",
"version": "0.0.0",
"private": true,
"description": "Self-hosted solution to read your RSS feeds through your own Telegram channel.",
"homepage": "https://github.com/kutsan/telegram-rss-bot",
"repository": "github:kutsan/telegram-rss-bot",
"license": "GPL-3.0",
"author": "Kutsan Kaplan <me@kutsankaplan.com> (https://kutsankaplan.com)",
"type": "module",
"scripts": {
"dev": "node --experimental-specifier-resolution=node --loader ts-node/esm ./src/index.ts",
"start": "node --experimental-specifier-resolution=node dist/index.js",
"prebuild": "npm run lint",
"build": "tsc",
"format": "prettier --write '**/*.{js,ts,tsx,json,md,css}' --list-different",
"lint": "eslint --ignore-path .gitignore ."
},
"dependencies": {
"better-sqlite3": "^7.4.5",
"cron": "^1.8.2",
"dotenv": "^10.0.0",
"limiter": "^2.0.1",
"node-fetch": "^3.1.0",
"rss-parser": "^3.12.0",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.4.1",
"@types/cron": "^1.7.3",
"@types/node": "^16.11.9",
"@types/xml2js": "^0.4.9",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"prettier": "^2.4.1",
"ts-node": "^10.4.0"
}
}