forked from zjns/telegram-bot-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "telegram-bot-server",
"version": "1.0.0",
"private": true,
"description": "Deploy telegram bot server in github workflows.",
"main": "dist/server/index.js",
"scripts": {
"build": "tsc && ncc build -o dist/server src/server.ts && ncc build -o dist/cleanup src/cleanup.ts",
"lint": "eslint **/*.ts --cache",
"lint-fix": "eslint **/*.ts --cache --fix",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts"
},
"keywords": [
"actions",
"node",
"telegram",
"bot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zjns/telegram-bot-server.git"
},
"author": "zjns",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1"
},
"devDependencies": {
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "2.5.1",
"typescript": "^4.5.4"
}
}