-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.42 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.42 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
94
95
96
97
98
99
100
101
{
"name": "espi",
"version": "3.8.0",
"description": "Unfriendly Bot for Telegram",
"author": "Leandro Di Lorenzo <leandro.jdl@gmail.com>",
"license": "ISC",
"homepage": "https://github.com/12-cactus/espi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/12-cactus/espi.git"
},
"bugs": {
"url": "https://github.com/12-cactus/espi/issues"
},
"main": "src/index.ts",
"engines": {
"node": "20.17"
},
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "sh .scripts/start-dev.sh",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint .",
"release": "dotenv release-it",
"depcheck": "depcheck --config .depcheckrc",
"ncu": "node ncu-changelog.js",
"tunnel": "sh .scripts/start-tunnel.sh",
"prepare": "if [ \"$NODE_ENV\" != production ]; then husky; fi"
},
"volta": {
"node": "20.17.0",
"yarn": "1.22.22"
},
"dependencies": {
"axios": "^1.13.1",
"cron": "^4.3.3",
"date-fns": "^4.1.0",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"morgan": "^1.10.1",
"openai": "4.52.7",
"telegraf": "^4.16.3",
"winston": "^3.18.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@jest/globals": "30.2.0",
"@types/cron": "^2.4.3",
"@types/express": "^5.0.5",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "16.2.6",
"nock": "14.0.10",
"nodemon": "3.1.10",
"prettier": "3.6.2",
"release-it": "^19.0.5",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,json,md}": "prettier --write",
"*.{ts}": "eslint"
},
"release-it": {
"hooks": {
"before:init": [
"npx prettier --check .",
"yarn lint"
]
},
"git": {
"commitMessage": "🔖 v${version}"
},
"github": {
"release": true,
"releaseName": "Release ${version}"
},
"npm": {
"publish": false
}
},
"keywords": [
"espinoso",
"telegram",
"bot"
]
}