-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.63 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "themerbot",
"version": "0.1.0",
"description": "Create themes for telegram android from a picture.",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"dev": "ts-node origin/index.ts",
"build": "tsc",
"test": "tsc --noEmit",
"lint": "eslint origin/ --format codeframe",
"i18n": "node scripts/download-translations.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThemerBot/ThemerBot.git"
},
"author": "Andrew Lane <contact@lungers.com>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ThemerBot/ThemerBot/issues"
},
"homepage": "https://github.com/ThemerBot/ThemerBot#readme",
"dependencies": {
"@grammyjs/runner": "^1.0.2",
"@grammyjs/transformer-throttler": "^1.0.0",
"@jimp/core": "^0.22.10",
"@snejugal/color": "^2.1.1",
"@types/express": "^4.17.21",
"@types/tmp": "^0.2.6",
"@vueuse/core": "^11.0.1",
"@youtwitface/ntcjs": "^1.0.1",
"adm-zip": "^0.5.10",
"attheme-editor-api": "^1.1.0",
"attheme-js": "^1.1.1",
"axios": "^1.7.4",
"body-parser": "^1.20.3",
"color": "^4.0.1",
"convert-svg-to-png": "^0.3.1",
"data-uri-to-buffer": "^6.0.2",
"dotenv": "^10.0.0",
"envalid": "^7.1.1",
"express": "^5.1.0",
"get-image-colors": "^4.0.0",
"grammy": "^1.2.1",
"image-size": "^0.6.3",
"imageinfo": "^1.0.4",
"jimp": "^0.22.10",
"jsdom": "^22.1.0",
"jszip": "^3.10.1",
"log4js": "^6.9.1",
"mkdirp": "^1.0.4",
"mysql2": "^3.12.0",
"new-i18n": "^3.0.0-5",
"node-fetch": "^2.6.1",
"node-vibrant": "^3.1.6",
"puppeteer": "^22.14.0",
"request-promise": "^0.0.1",
"sequelize": "^6.37.5",
"serve-static": "^1.16.2",
"sharp": "^0.33.4",
"socks5-https-client": "^1.2.1",
"svg2img": "^0.9.4",
"svg2png": "^4.1.1",
"tdesktop-theme": "^0.3.2",
"telegraf": "^4.16.3",
"tmp": "^0.2.3",
"unzipper": "^0.10.11",
"winston": "^3.13.1",
"xmldom": "^0.5.0"
},
"devDependencies": {
"@types/color": "^3.0.2",
"@types/cors": "^2.8.17",
"@types/get-image-colors": "^4.0.1",
"@types/jsdom": "^21.1.2",
"@types/mkdirp": "^1.0.2",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.5.12",
"@types/redis": "^2.8.31",
"@types/sharp": "^0.28.5",
"@types/svg2png": "^4.1.2",
"@types/tinycolor2": "^1.4.6",
"@types/unzipper": "^0.10.4",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"cors": "^2.8.5",
"eslint": "^7.32.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}