-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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": "nestgram",
"description": "Framework for working with Telegram Bot API on TypeScript like Nest.js",
"version": "1.9.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Degreet <degreetpro@gmail.com>",
"homepage": "https://degreetpro.gitbook.io/nestgram/",
"repository": {
"type": "git",
"url": "https://github.com/Degreet/nestgram.git"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"keywords": [
"nest",
"telegram",
"bot",
"api"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"dev": "nodemon test/test.ts",
"prepare": "npm run build",
"build": "rm -rf dist && tsc"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/config": "^0.0.41",
"@types/edit-json-file": "^1.7.0",
"@types/form-data": "^2.5.0",
"@types/node": "^17.0.36",
"@types/reflect-metadata": "^0.1.0",
"config": "^3.3.7",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-node": "^10.8.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"typescript": "^4.7.2"
},
"dependencies": {
"axios": "^0.27.2",
"colors": "^1.4.0",
"edit-json-file": "^1.7.0",
"form-data": "^4.0.0",
"reflect-metadata": "^0.1.13"
}
}