-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "marcos-bot",
"version": "1.0.0",
"description": "A Telegram bot that generates random messages based in patterns of previous conversations",
"main": "dist/App.js",
"scripts": {
"clean": "rimraf dist",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:bot": "nodemon './dist/App.js' --watch './dist'",
"watch:cli": "nodemon './dist/Cli.js' --watch './dist'",
"cli": "node './dist/Cli.js'",
"app": "node './dist/App.js'",
"start": "npm-run-all clean build --parallel watch:build watch:bot --print-label"
},
"author": "Franco Frizzo",
"license": "ISC",
"dependencies": {
"@types/node-telegram-bot-api": "^0.30.1",
"enquirer": "^2.1.1",
"node-telegram-bot-api": "^0.30.0",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"sqlite": "^4.0.25",
"sqlite3": "^5.0.2",
"typescript": "^4.6.4"
},
"devDependencies": {
"@types/node": "^14.0.1",
"@types/sqlite3": "^3.1.8"
},
"repository": {
"type": "git",
"url": "http://www.github.com/francofrizzo/marcos-bot-js.git"
},
"keywords": [
"random",
"messages",
"bot",
"telegram",
"markov",
"chains",
"chat"
]
}