-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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": "tailchat-rss-bot",
"version": "1.0.0",
"private": true,
"description": "rss 推送机器人",
"main": "index.js",
"type": "module",
"scripts": {
"start": "ts-node --esm ./src/index.ts",
"dev": "ts-node -r dotenv/config --esm ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msgbyte/tailchat-rss-bot.git"
},
"author": "moonrailgun",
"license": "MIT",
"bugs": {
"url": "https://github.com/msgbyte/tailchat-rss-bot/issues"
},
"homepage": "https://github.com/msgbyte/tailchat-rss-bot#readme",
"dependencies": {
"axios": "^0.27.2",
"dayjs": "^1.11.1",
"is-url": "^1.2.4",
"lowdb": "^3.0.0",
"md5": "^2.3.0",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@types/is-url": "^1.2.30",
"@types/lowdb": "^1.0.11",
"@types/md5": "^2.3.2",
"@types/node": "^17.0.32",
"dotenv": "^16.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}