-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.34 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
{
"name": "ghaction-telegram",
"version": "0.0.1",
"description": "A GitHub action to interact with telegram.",
"main": "lib/main.js",
"repository": "https://github.com/nikhilbadyal/ghaction-telegram",
"author": "nikhilbadyal",
"license": "MIT",
"scripts": {
"build": "ncc build src/main.ts --source-map -d --minify --license licenses.txt",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix src/**/*.ts",
"prettier-fix": "prettier --write '**/*.ts'",
"prettier": "prettier --check '**/*.ts'",
"all": "yarn prettier-fix && yarn prettier && yarn lint-fix && yarn lint && yarn run build",
"husky": "husky install",
"local": "npx tsx src/main.ts"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"telegram": "^2.26.8"
},
"devDependencies": {
"@types/node": "^22.9.0",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint-plugin-github": "^5.1.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"@vercel/ncc": "^0.38.2",
"prettier": "^3.4.2",
"typescript": "^5.6.3",
"ts-node": "^10.9.2",
"husky": "^9.1.7"
}
}