-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
37 lines (37 loc) · 944 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
33
34
35
36
37
{
"name": "telegram-action",
"version": "2.0.0",
"description": "Notify via Telegram!",
"keywords": [
"action",
"telegram",
"notify"
],
"repository": {
"type": "git",
"url": "https://github.com/Lukasss93/telegram-action.git"
},
"author": "Luca Patera",
"license": "MIT",
"main": "lib/main.js",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.1",
"axios": "^0.21.4",
"mustache": "^4.2.0",
"sanitize-html": "^2.7.0",
"showdown": "^1.9.1"
},
"devDependencies": {
"@types/mustache": "^4.1.2",
"@types/node": "^15.14.9",
"@types/sanitize-html": "^2.6.2",
"@types/showdown": "^1.9.4",
"typescript": "^4.6.3"
},
"scripts": {
"start": "tsc && node ./dist/main.js",
"build": "tsc",
"build-watch": "tsc --watch"
}
}