-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 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
{
"name": "setup-msys2",
"version": "1.0.0",
"description": "MSYS2 Setup GitHub Action",
"repository": {
"type": "git",
"url": "git+https://github.com/msys2/setup-msys2.git"
},
"type": "module",
"scripts": {
"pkg": "ncc build main.js --minify --out dist",
"lint": "eslint .",
"tsc": "tsc -p jsconfig.json",
"test": "node --test"
},
"keywords": [
"GitHub",
"Actions",
"MSYS2",
"MINGW64",
"MINGW32",
"MSYS",
"UCRT64",
"CLANG64"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/msys2/setup-msys2/issues"
},
"homepage": "https://github.com/msys2/setup-msys2",
"dependencies": {
"@actions/cache": "^4.1.0",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^20.19.24",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.1",
"eslint-plugin-jsdoc": "^61.5.0",
"globals": "^16.5.0",
"typescript": "^5.9.3"
}
}