build-ts 17.1.8 → 17.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +22 -25
package/package.json
CHANGED
|
@@ -1,34 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "build-ts",
|
|
3
|
-
"version": "17.1.
|
|
4
|
-
"license": "UNLICENSED",
|
|
5
|
-
"author": "WillBooster Inc.",
|
|
3
|
+
"version": "17.1.9",
|
|
6
4
|
"repository": {
|
|
7
5
|
"type": "git",
|
|
8
6
|
"url": "git+https://github.com/WillBooster/build-ts.git"
|
|
9
7
|
},
|
|
8
|
+
"license": "UNLICENSED",
|
|
9
|
+
"author": "WillBooster Inc.",
|
|
10
|
+
"type": "module",
|
|
10
11
|
"bin": "bin/index.js",
|
|
11
12
|
"files": [
|
|
12
13
|
"bin/",
|
|
13
14
|
"dist/",
|
|
14
15
|
"babel.*"
|
|
15
16
|
],
|
|
16
|
-
"type": "module",
|
|
17
17
|
"scripts": {
|
|
18
18
|
"build": "wb buildIfNeeded --command 'yarn start app'",
|
|
19
19
|
"check-all-for-ai": "yarn check-for-ai && yarn test",
|
|
20
20
|
"check-for-ai": "yarn install > /dev/null && yarn format > /dev/null 2> /dev/null || true && yarn lint-fix --quiet",
|
|
21
21
|
"cleanup": "yarn format && yarn lint-fix",
|
|
22
|
-
"format": "sort-package-json && yarn format-code
|
|
23
|
-
"format-code": "oxfmt --write --no-error-on-unmatched-pattern .",
|
|
22
|
+
"format": "sort-package-json && yarn format-code",
|
|
23
|
+
"format-code": "oxfmt --write --no-error-on-unmatched-pattern . '!**/package.json'",
|
|
24
24
|
"lint": "oxlint --no-error-on-unmatched-pattern .",
|
|
25
25
|
"lint-fix": "yarn lint --fix",
|
|
26
26
|
"prepare": "lefthook install || true",
|
|
27
|
-
"prettify": "prettier --cache --color --no-error-on-unmatched-pattern --write \"**/{.*/,}*.{java}\" \"!**/test{-,/}fixtures/**\" || true",
|
|
28
27
|
"start": "tsx src/index.ts",
|
|
29
28
|
"start-prod": "yarn build && yarn build-ts",
|
|
30
29
|
"test": "vitest run",
|
|
31
|
-
"typecheck": "wb typecheck"
|
|
30
|
+
"typecheck": "wb typecheck",
|
|
31
|
+
"verify": "wb verify",
|
|
32
|
+
"verify-full": "wb verify --full"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"@babel/core": "7.29.0",
|
|
@@ -46,8 +47,8 @@
|
|
|
46
47
|
"@rollup/plugin-replace": "6.0.3",
|
|
47
48
|
"@rollup/plugin-terser": "1.0.0",
|
|
48
49
|
"@rollup/pluginutils": "5.3.0",
|
|
49
|
-
"@typescript/native-preview": "7.0.0-dev.
|
|
50
|
-
"@willbooster/shared-lib-node": "8.5.
|
|
50
|
+
"@typescript/native-preview": "7.0.0-dev.20260426.1",
|
|
51
|
+
"@willbooster/shared-lib-node": "8.5.13",
|
|
51
52
|
"babel-plugin-polyfill-corejs3": "0.14.2",
|
|
52
53
|
"babel-plugin-transform-remove-console": "6.9.4",
|
|
53
54
|
"chalk": "5.6.2",
|
|
@@ -75,26 +76,22 @@
|
|
|
75
76
|
"@types/signal-exit": "4.0.0",
|
|
76
77
|
"@types/yargs": "17.0.35",
|
|
77
78
|
"@willbooster/babel-configs": "2.5.1",
|
|
78
|
-
"@willbooster/oxfmt-config": "1.2.
|
|
79
|
-
"@willbooster/oxlint-config": "1.4.
|
|
80
|
-
"@willbooster/
|
|
81
|
-
"
|
|
82
|
-
"build-ts": "17.1.6",
|
|
79
|
+
"@willbooster/oxfmt-config": "1.2.2",
|
|
80
|
+
"@willbooster/oxlint-config": "1.4.6",
|
|
81
|
+
"@willbooster/wb": "13.12.10",
|
|
82
|
+
"build-ts": "17.1.8",
|
|
83
83
|
"conventional-changelog-conventionalcommits": "9.3.1",
|
|
84
84
|
"lefthook": "2.1.6",
|
|
85
|
-
"oxfmt": "0.
|
|
86
|
-
"oxlint": "1.
|
|
87
|
-
"oxlint-tsgolint": "0.
|
|
88
|
-
"prettier": "3.8.3",
|
|
89
|
-
"prettier-plugin-java": "2.8.1",
|
|
85
|
+
"oxfmt": "0.47.0",
|
|
86
|
+
"oxlint": "1.62.0",
|
|
87
|
+
"oxlint-tsgolint": "0.22.1",
|
|
90
88
|
"semantic-release": "25.0.3",
|
|
91
89
|
"sort-package-json": "3.6.1",
|
|
92
|
-
"type-fest": "5.
|
|
93
|
-
"vitest": "4.1.
|
|
90
|
+
"type-fest": "5.6.0",
|
|
91
|
+
"vitest": "4.1.5"
|
|
94
92
|
},
|
|
95
|
-
"
|
|
93
|
+
"packageManager": "yarn@4.14.1",
|
|
96
94
|
"engines": {
|
|
97
95
|
"node": ">=24"
|
|
98
|
-
}
|
|
99
|
-
"packageManager": "yarn@4.13.0"
|
|
96
|
+
}
|
|
100
97
|
}
|