-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
43
44
45
46
{
"name": "setup-compressor",
"version": "0.1.0",
"description": "Action for installing and configuring IX-Ray Compressor utility to PATH of the runner",
"author": "acidicMercury8",
"license": "MIT",
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"scripts": {
"format:write": "npx prettier --write .",
"format:check": "npx prettier --check .",
"lint": "npx eslint .",
"pack": "npx ncc build src/index.js -o dist --source-map --license licenses.txt",
"pack:watch": "npm run package -- --watch"
},
"homepage": "https://github.com/ixray-team/setup-compressor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ixray-team/setup-compressor.git"
},
"bugs": {
"url": "https://github.com/ixray-team/setup-compressor/issues"
},
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"compressing": "^1.10.1",
"request": "^2.88.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"eslint": "^9.13.0",
"prettier": "^3.3.2",
"prettier-plugin-brace-style": "^0.7.0"
}
}