-
Notifications
You must be signed in to change notification settings - Fork 403
/
Copy pathpackage.json
32 lines (32 loc) · 898 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
{
"name": "mirror-bot",
"version": "2.0.0",
"description": "A telegram bot to mirror files to Google Drive",
"main": "index.js",
"scripts": {
"start": "npx typescript && NTBA_FIX_319=1 node --max_old_space_size=128 ./out/index.js"
},
"author": "Ritayan Chakraborty",
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^7.0.0",
"@types/mime-types": "^2.1.0",
"@types/node-telegram-bot-api": "^0.31.0",
"@types/tar": "^4.0.0",
"@types/uuid": "^3.4.4",
"aria2": "^3.0.1",
"diskspace": "^2.0.0",
"fs-extra": "^7.0.0",
"googleapis": "^41.0.1",
"http-range-parse": "^1.0.0",
"node-telegram-bot-api": "^0.30.0",
"tar": "^4.4.4",
"typescript": "^3.5.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.12.0",
"eslint": "^6.0.1"
}
}