-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 850 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
33
34
35
36
37
{
"name": "telegram-to-markdown-converter",
"version": "1.0.0",
"description": "Convert Telegram HTML exports to structured Markdown for LLM analysis",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"test": "node --test src/**/*.test.js",
"lint": "eslint src/",
"format": "prettier --write 'src/**/*.{js,json,md}'"
},
"keywords": [
"telegram",
"markdown",
"converter",
"html",
"llm"
],
"author": "",
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"date-fns": "^3.0.6",
"marked": "^11.1.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=18.0.0"
}
}