-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.81 KB
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
73
74
75
{
"name": "nhentai-telegram-bot",
"version": "1.1.2",
"description": "A simple Bun-powered 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": "bun run built/src/server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "bun run build && bun run built/src/server.js"
},
"engines": {
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.9",
"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": "^6.0.0",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/adm-zip": "^0.5.7",
"@types/archiver": "^7.0.0",
"@types/bun": "^1.3.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/html-escaper": "^3.0.4",
"@types/i18n": "^0.13.12",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"ava": "^6.4.1",
"eslint": "^10.0.1",
"typescript": "^5.9.3"
},
"dependencies": {
"adm-zip": "^0.5.16",
"cheerio": "^1.2.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"drizzle-orm": "^0.44.6",
"express": "^5.2.1",
"got": "^14.6.6",
"grammy": "^1.40.0",
"html-escaper": "^3.0.3",
"i18next": "^25.8.13",
"isomorphic-fetch": "^3.0.0",
"nhentai": "^4.0.0",
"pino": "^10.3.1",
"tough-cookie": "^6.0.0"
}
}