-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "github-action-latest-release",
"version": "0.2.1",
"description": "An action to get the latest release from a Github repo.",
"private": true,
"exports": {
".": "./dist/index.js"
},
"scripts": {
"lint": "eslint .",
"package": "esbuild --bundle --minify --sourcemap --platform=node --target=node24 --outfile=dist/index.js src/index.ts",
"build": "tsc",
"format:write": "prettier --write .",
"format:check": "prettier --check .",
"local-action": "npx @github/local-action . src/main.ts .env"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ophiosdev/github-action-latest-release.git"
},
"keywords": [
"actions",
"latest",
"release"
],
"bugs": {
"url": "https://github.com/ophiosdev/github-action-latest-release/issues"
},
"homepage": "https://github.com/ophiosdev/github-action-latest-release#readme",
"author": "Ophios GmbH",
"license": "MIT",
"engines": {
"node": ">=24"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@github/local-action": "^7.0.0",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"esbuild": "0.28.1",
"eslint": "^9",
"eslint-config-prettier": "^10",
"eslint-import-resolver-typescript": "^4",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^29",
"eslint-plugin-prettier": "^5",
"prettier": "^3",
"prettier-plugin-multiline-arrays": "^4.1.11",
"typescript": "^5"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@octokit/rest": "^22.0.0"
},
"overrides": {
"rimraf": "^6.0.0",
"glob": "^13.0.0",
"undici": "^8.0.0"
}
}