-
Notifications
You must be signed in to change notification settings - Fork 112
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.19 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.19 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
64
65
66
67
68
69
70
71
{
"name": "github-action",
"version": "0.0.0-PLACEHOLDER",
"private": true,
"description": "GitHub Action to run Renovate self-hosted.",
"homepage": "https://github.com/renovatebot/github-action#readme",
"bugs": {
"url": "https://github.com/renovatebot/github-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/renovatebot/github-action.git"
},
"license": "GPL-3.0-or-later",
"author": "Jeroen de Bruijn",
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf dist/",
"compile": "node tools/compile.js",
"lint": "run-s lint-es prettier",
"lint:fix": "run-s lint-es:fix prettier-fix",
"lint-es": "eslint .",
"lint-es:file": "eslint",
"lint-es:file:fix": "eslint --fix",
"lint-es:fix": "eslint --fix .",
"prepare": "husky",
"prettier": "prettier --cache --check --ignore-unknown \"{**/*,*}.*\"",
"prettier-fix": "prettier --cache --write --ignore-unknown \"{**/*,*}.*\"",
"release": "run-s clean build semantic-release",
"semantic-release": "semantic-release",
"start": "run-s build && node dist"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "9.39.4",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "13.1.5",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/eslint-config-prettier": "6.11.3",
"@types/node": "24.12.2",
"conventional-changelog-conventionalcommits": "9.3.1",
"esbuild": "0.28.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-json": "4.0.1",
"globals": "17.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"rimraf": "6.1.3",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"typescript-eslint": "8.58.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.11.0",
"pnpm": "^10.0.0"
}
}