-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.39 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
{
"name": "actions",
"version": "1.1.3",
"private": true,
"scripts": {
"all": "npm-run-all fmt build",
"fmt": "npm-run-all fmt:*",
"fmt:eslint": "eslint --fix",
"fmt:pretty": "prettier --write .",
"build": "npm-run-all build:tsc build:ncc",
"build:tsc": "tsc",
"build:ncc": "npm-run-all build:ncc:*",
"build:ncc:helm-package-push": "ncc build ./lib/helm-package-push/src/main.js --source-map --license licenses.txt --minify --out helm-package-push/dist",
"build:ncc:ghcr-delete-images": "ncc build ./lib/ghcr-delete-images/src/main.js --source-map --license licenses.txt --minify --out ghcr-delete-images/dist",
"build:ncc:setup-tool": "ncc build ./lib/setup-tool/src/main.js --source-map --license licenses.txt --minify --out setup-tool/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frantjc/actions.git"
},
"author": "frantjc",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/tool-cache": "^2.0.2",
"yaml": "^2.5.1"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@typescript-eslint/parser": "^7.0.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.10.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=20.0.0"
}
}