-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.19 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.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
{
"name": "java-commons",
"packageManager": "yarn@4.13.0",
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"git-conventional-commits": "^2.8.0",
"lint-staged": "^16.2.1",
"prettier": "^3.6.2",
"prettier-plugin-java": "^2.7.5",
"prettier-plugin-properties": "^0.3.0",
"prettier-plugin-toml": "^2.0.6",
"rimraf": "^6.1.2"
},
"scripts": {
"contribute": "uv sync --frozen && git config core.hooksPath .share/git/hooks",
"lint": "yarn lint:prettier && yarn lint:reuse",
"lint:prettier": "prettier --ignore-unknown --cache --check '**'",
"lint:reuse": "yarn reuse lint",
"merge:copilot": "cd .share && yarn workspace merge run merge:copilot",
"merge:junie": "cd .share && yarn workspace merge run merge:junie",
"merge:kimi": "cd .share && yarn workspace merge run merge:kimi",
"precontribute": "yarn setup:corepack && yarn setup:yarn",
"reuse": "uv run --frozen --group dev reuse",
"setup:corepack": "npm install -g corepack && corepack enable",
"setup:yarn": "yarn install --immutable && cd .share && yarn install --immutable",
"test": "yarn workspaces foreach --all run test"
}
}