-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.73 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.73 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
{
"name": "willbooster-shared",
"version": "0.0.0-semantically-released",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/WillBooster/shared.git"
},
"license": "Apache-2.0",
"author": "WillBooster Inc.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all --parallel --verbose run build",
"cleanup": "yarn format && yarn lint-fix",
"format": "sort-package-json && yarn format-code && yarn workspaces foreach --all --parallel --verbose run format",
"format-code": "oxfmt --write --no-error-on-unmatched-pattern . '!**/package.json'",
"lint": "yarn workspaces foreach --all --parallel --verbose run lint",
"lint-fix": "yarn workspaces foreach --all --parallel --verbose run lint-fix",
"prepare": "lefthook install || true",
"release": "yarn multi-semantic-release --debug",
"test": "CI=1 FORCE_COLOR=3 yarn workspaces foreach --all --verbose run test",
"typecheck": "wb typecheck",
"verify": "wb verify",
"verify-full": "wb verify --full"
},
"devDependencies": {
"@anolilab/multi-semantic-release": "4.4.1",
"@tsconfig/node-lts": "24.0.0",
"@tsconfig/node-ts": "23.6.4",
"@types/node": "25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260421.2",
"@willbooster/oxfmt-config": "1.2.2",
"@willbooster/oxlint-config": "1.4.6",
"@willbooster/wb": "13.12.13",
"conventional-changelog-conventionalcommits": "9.3.1",
"lefthook": "2.1.5",
"oxfmt": "0.48.0",
"oxlint": "1.63.0",
"oxlint-tsgolint": "0.22.1",
"semantic-release": "25.0.3",
"sort-package-json": "3.6.1"
},
"packageManager": "yarn@4.14.1",
"engines": {
"node": ">= 22.18.0"
}
}