-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.45 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
47
48
49
50
51
52
53
{
"name": "carbon-telegram-bot",
"version": "1.0.2",
"description": "A package to generate beautiful code snippets to your telegram bot",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc",
"tsc:dev": "tsc --watch",
"nodemon": "nodemon dist/index.js",
"dev": "npm-run-all -p tsc:dev nodemon"
},
"keywords": [
"telegram",
"bot",
"carbon",
"carbon.now.sh",
"code",
"snippet"
],
"author": "Matheus Souza <matheushrt@gmail.com> (https://github.com/matheushrt)",
"homepage": "https://github.com/matheushrt/carbon-telegram-bot#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/matheushrt/carbon-telegram-bot.git"
},
"bugs": {
"url": "https://github.com/matheushrt/carbon-telegram-bot/issues"
},
"license": "MIT",
"dependencies": {
"dotenv": "^8.2.0",
"form-data": "^3.0.0",
"koa": "^2.11.0",
"koa-bodyparser": "^2.5.0",
"node-fetch": "^3.1.1",
"puppeteer": "^2.1.1"
},
"devDependencies": {
"@koa/router": "^8.0.8",
"@types/koa": "^2.11.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa__router": "^8.0.2",
"@types/node-fetch": "^2.5.5",
"@types/puppeteer": "^2.0.1",
"@types/source-map-support": "^0.5.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
}
}