-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 902 Bytes
/
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
{
"name": "notify-workflow",
"version": "3.0.1",
"description": "A GitHub Action to send workflow status over a Telegram bot and Firebase",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"start": "node -r dotenv/config .",
"start:dev": "ts-node --project tsconfig.json --files -r tsconfig-paths/register -r dotenv/config src/main/main.ts"
},
"keywords": [],
"author": "yakuhzi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yakuhzi/notify-workflow.git"
},
"dependencies": {
"@actions/core": "^1.10.1",
"axios": "^1.6.8"
},
"devDependencies": {
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
}
}