-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.75 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.75 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
63
{
"name": "github-action-latest-release",
"version": "0.1.0",
"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=node20 --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": ">=20"
},
"devDependencies": {
"@eslint/compat": "^1",
"@github/local-action": "^5",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"esbuild": "0.25.9",
"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-eslint": "^16",
"typescript": "^5"
},
"dependencies": {
"@actions/core": "^1",
"@actions/github": "^6",
"@octokit/rest": "^21"
},
"overrides": {
"@humanwhocodes/config-array": "@eslint/config-array",
"rimraf": "^4",
"@humanwhocodes/object-schema": "@eslint/object-schema",
"glob": "^9"
}
}