-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "actions-notify-discord",
"version": "3.0.0",
"main": "dist/index.js",
"scripts": {
"ts": "esr",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"build": "node esbuild.js",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/quinck-io/actions-notify-discord.git"
},
"author": {
"name": "Stefano Righini",
"email": "[email protected]"
},
"license": "ISC",
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"esbuild": "^0.20.2",
"esbuild-runner": "^2.2.2",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"typescript": "^5.4.5"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@actions/core": "^1.11.1",
"zod": "^3.24.0"
}
}