-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 877 Bytes
/
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": "rodinabot",
"version": "0.0.1",
"description": "Rodina MSFT bot",
"main": "build/src/index.js",
"engines": {
"node": ">=12"
},
"bin": {
"bzozobot": "build/src/index.js"
},
"files": [
"build/src",
"!build/src/**/*.map"
],
"scripts": {
"docs": "echo TBD",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"posttest": "npm run check",
"start": "node build/src/index.js",
"test": "echo TBD"
},
"author": "Alexander Fenster <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.21",
"@types/node-fetch": "^2.5.8",
"gts": "^3.1.0",
"typescript": "^4.1.3"
},
"dependencies": {
"js-yaml": "^4.0.0",
"telegraf": "^4.0.1"
}
}