-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 874 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
{
"name": "image-draw-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/bot.ts --exec ts-node",
"debug": "nodemon --inspect ./bot/bot.ts",
"start": "node build/bot.js",
"build": "tsc --outDir build src/bot.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yurtsiv/image-draw-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yurtsiv/image-draw-bot/issues"
},
"homepage": "https://github.com/yurtsiv/image-draw-bot#readme",
"dependencies": {
"canvas": "^2.6.1",
"safe-eval": "^0.4.1",
"telegraf": "^3.38.0"
},
"devDependencies": {
"@types/node": "^13.13.4",
"nodemon": "^2.0.3",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
}
}