-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
72 lines (72 loc) · 1.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nhentai-telegram-bot",
"version": "1.0.0",
"description": "A simple Nodejs telegram app built on millions of broken APIs, instantly up and running (not always).",
"type": "module",
"exports": "./src/server.js",
"scripts": {
"test": "ava",
"build": "tsc",
"start": "node built/src/server",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "tsc && node built/src/server"
},
"engines": {
"node": ">=14.x"
},
"repository": {
"url": "https://github.com/iamdowner/nhentai-telegram-bot"
},
"license": "GPLv3",
"keywords": [
"hentai",
"nhentai",
"ehentai",
"telegram",
"bot"
],
"ava": {
"typescript": {
"rewritePaths": {
"src/": "built/src/"
},
"compile": "tsc"
},
"concurrency": 5,
"files": [
"src/**/*.test.ts"
]
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/adm-zip": "^0.5.0",
"@types/archiver": "^5.3.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.17",
"@types/html-escaper": "^3.0.0",
"@types/i18n": "^0.13.2",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"ava": "^5.2.0",
"eslint": "^8.34.0",
"typescript": "^4.9.5"
},
"dependencies": {
"adm-zip": "^0.5.9",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.20.0",
"got": "^12.5.3",
"grammy": "^1.14.1",
"html-escaper": "^3.0.3",
"i18next": "^22.4.9",
"isomorphic-fetch": "^3.0.0",
"mongoose": "^8.8.3",
"pino": "^8.10.0",
"tough-cookie": "^4.1.3"
}
}