-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 863 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
{
"name": "action-download-artifacts-plus",
"version": "1.0.0",
"private": true,
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"release": "ncc build -s src/main.ts"
},
"keywords": [
"actions"
],
"author": "nanoufo",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^1.1.1",
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"mime": "^3.0.0",
"minimatch": "^9.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/node": "^16.11.7",
"@vercel/ncc": "^0.36.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"typescript-formatter": "^7.2.2"
}
}