-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.37 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.37 KB
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
45
46
47
48
{
"name": "slack-workflow-status",
"description": "A Github Action for sending Workflow run results to Slack",
"version": "2.0.0",
"author": "Anthony Kinson",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"private": false,
"bugs": {
"url": "https://github.com/Gamesight/slack-workflow-status/issues"
},
"homepage": "https://github.com/Gamesight/slack-workflow-status#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Gamesight/slack-workflow-status.git"
},
"engines": {
"node": ">=24"
},
"scripts": {
"build": "ncc build src/index.ts",
"format": "prettier --write 'src/**/*.ts' '__tests__/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts' '__tests__/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"test": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@slack/web-api": "^7.15.1",
"@slack/webhook": "^7.0.9"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-github": "^5.1.8",
"husky": "^9.1.7",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
}
}