-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.51 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
47
48
49
50
51
52
53
54
55
{
"name": "release-me",
"version": "0.0.1",
"private": false,
"description": "GitHub Release Management",
"author": "Kevin de Jong",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/dev-build-deploy/release-me",
"keywords": [
"github",
"action",
"releases"
],
"bugs": {
"url": "https://github.com/dev-build-deploy/release-me/issues"
},
"scripts": {
"build": "run-p build:*",
"build:assets": "ncc build -o lib/assets src/entrypoints/assets.ts",
"build:get": "ncc build -o lib/get src/entrypoints/get.ts",
"build:main": "ncc build -o lib/main src/entrypoints/main.ts",
"test": "jest --coverage",
"lint": "eslint --ext .ts .",
"format": "prettier --write **/*.ts"
},
"dependencies": {
"@actions/artifact": "^1",
"@actions/core": ">=1.10.1",
"@actions/github": ">=6.0.0",
"@dev-build-deploy/commit-it": ">=2.3.1",
"@dev-build-deploy/version-it": ">=0.3.0",
"yaml": ">=2.4.5"
},
"devDependencies": {
"@octokit/openapi-types": ">=22",
"@tsconfig/node20": "^20",
"@types/jest": ">=29",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": ">=7",
"@typescript-eslint/parser": ">=7",
"@vercel/ncc": ">=0",
"eslint": ">=8",
"eslint-import-resolver-typescript": ">=3",
"eslint-plugin-import": ">=2",
"eslint-plugin-jest": ">=28",
"jest": ">=29",
"npm-run-all2": ">=6",
"prettier": ">=3",
"ts-jest": ">=29",
"typescript": ">=5"
},
"engines": {
"node": ">=20"
}
}