-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "telegram-repeater",
"version": "1.0.0",
"description": "簡易自動回覆機器人",
"repository": "git+https://github.com/sunny00217wm/Telegram-Repeater",
"author": "sunny00217wm",
"scripts": {
"start": "ts-node -r tsconfig-paths/register ./src/index.ts",
"test": "npm run lint && npm run build && npm build-start",
"build": "tsc",
"build-start": "node build/src/index",
"lint": "eslint src/*.ts src/**/*.ts"
},
"main": "build/src/index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/sunny00217wm/Telegram-Repeater/issues"
},
"private": true,
"dependencies": {
"module-alias": "^2.2.2",
"telegraf": "~3.39.0",
"typescript": "^4.4.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/module-alias": "^2.0.1",
"@types/node": "^16.7.10",
"@types/triple-beam": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.30.0",
"eslint-config-wikimedia": "^0.20.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"ts-node": "^10.1.0",
"tsconfig-paths": "^3.10.1",
"tslib": "^2.3.1"
},
"engines": {
"node": ">=14.0.0",
"npm": ">7.0.0"
},
"_moduleDirectories": [
"node_modules",
"src"
]
}