-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 894 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
{
"name": "slack-upload-file",
"version": "1.0.0",
"description": "",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"lint": "eslint src/**/*.ts",
"lint:report": "eslint --output-file eslint_report.json --format json src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/glob": "^0.5.0",
"@slack/web-api": "^7.8.0"
},
"devDependencies": {
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}