-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
{
"name": "hidewallbot",
"version": "1.0.0",
"description": "Telegram bots that uses 12ft to generate paywall-free links",
"main": "dist/bot.js",
"repository": {
"type": "git",
"url": "git+https://github.com/TheEdoRan/hidewallbot.git"
},
"bugs": {
"url": "https://github.com/theedoran/hidewallbot/issues"
},
"homepage": "https://github.com/theedoran/hidewallbot#readme",
"keywords": [
"telegram",
"bot",
"1ft",
"12ft",
"paywall"
],
"scripts": {
"prepare": "husky install",
"dev": "tsx ./src/bot.ts",
"compile": "tsc",
"commitlint": "commitlint",
"lint-staged": "lint-staged",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && eslint . --ext .js,.ts --no-cache",
"lint:fix": "npm run lint -- --fix"
},
"author": "TheEdoRan",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/node": "^20.10.0",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"tsx": "^4.5.0",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"metascraper": "^5.39.0",
"metascraper-image": "^5.39.0",
"metascraper-title": "^5.39.0",
"telegraf": "^4.15.0",
"typegram": "^5.2.0",
"valid-url": "^1.0.9"
}
}