@dword-design/base 13.1.3 → 14.0.1
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/dist/cli.js +2 -5
- package/dist/commands/command-options-input.d.ts +6 -0
- package/dist/commands/lint/index.d.ts +2 -1
- package/dist/commands/lint/index.js +4 -27
- package/dist/commands/typecheck/index.d.ts +2 -0
- package/dist/commands/typecheck/index.js +32 -0
- package/dist/get-generated-files/get-github-workflow/steps/get-test.js +1 -1
- package/dist/get-generated-files/get-gitpod/index.js +6 -0
- package/dist/get-generated-files/get-renovate/index.js +3 -3
- package/dist/get-generated-files/{get-typescript.js → get-typescript/index.js} +2 -1
- package/dist/get-git-info/index.js +2 -2
- package/dist/index.d.ts +55 -3
- package/dist/index.js +45 -32
- package/package.json +13 -11
- /package/dist/get-generated-files/{get-typescript.d.ts → get-typescript/index.d.ts} +0 -0
package/dist/cli.js
CHANGED
|
@@ -19,7 +19,7 @@ const testOptions = [{
|
|
|
19
19
|
}];
|
|
20
20
|
try {
|
|
21
21
|
await makeCli({
|
|
22
|
-
commands:
|
|
22
|
+
commands: {
|
|
23
23
|
checkUnknownFiles: {
|
|
24
24
|
handler: () => base.checkUnknownFiles()
|
|
25
25
|
},
|
|
@@ -61,10 +61,7 @@ try {
|
|
|
61
61
|
...command,
|
|
62
62
|
handler: (...args) => base.run(name, ...args)
|
|
63
63
|
}))
|
|
64
|
-
}
|
|
65
|
-
name,
|
|
66
|
-
...command
|
|
67
|
-
})))
|
|
64
|
+
}
|
|
68
65
|
});
|
|
69
66
|
} catch (error) {
|
|
70
67
|
console.error(error);
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import type { CommandOptionsInput } from '@/src/commands/command-options-input';
|
|
2
|
+
export default function (optionsInput?: CommandOptionsInput): Promise<import("execa").Result<any>>;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
|
-
import pathLib from "node:path";
|
|
2
1
|
import { execaCommand } from "execa";
|
|
3
|
-
import { globby } from "globby";
|
|
4
2
|
import parsePackagejsonName from "parse-packagejson-name";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
options = {
|
|
3
|
+
export default async function (optionsInput) {
|
|
4
|
+
const options = {
|
|
8
5
|
log: process.env.NODE_ENV !== "test",
|
|
9
6
|
stderr: "inherit",
|
|
10
|
-
...
|
|
7
|
+
...optionsInput
|
|
11
8
|
};
|
|
12
9
|
const packageName = parsePackagejsonName(this.packageConfig.name).fullName;
|
|
13
10
|
if (this.config.git !== void 0 && packageName !== this.config.git.project) {
|
|
@@ -21,26 +18,6 @@ export default async function (options) {
|
|
|
21
18
|
cwd: this.cwd,
|
|
22
19
|
stderr: options.stderr
|
|
23
20
|
});
|
|
24
|
-
|
|
25
|
-
config
|
|
26
|
-
} = ts.readConfigFile(pathLib.join(this.cwd, "tsconfig.json"), ts.sys.readFile);
|
|
27
|
-
const {
|
|
28
|
-
fileNames
|
|
29
|
-
} = ts.parseJsonConfigFileContent(config, ts.sys, this.cwd);
|
|
30
|
-
const vueFiles = await globby("**/*.vue", {
|
|
31
|
-
cwd: this.cwd,
|
|
32
|
-
dot: true,
|
|
33
|
-
ignore: ["**/node_modules/**"]
|
|
34
|
-
});
|
|
35
|
-
const allFileNames = [...fileNames, ...vueFiles];
|
|
36
|
-
if (allFileNames.length > 0) {
|
|
37
|
-
await execaCommand("vue-tsc --noEmit", {
|
|
38
|
-
...(options.log && {
|
|
39
|
-
stdout: "inherit"
|
|
40
|
-
}),
|
|
41
|
-
cwd: this.cwd,
|
|
42
|
-
stderr: options.stderr
|
|
43
|
-
});
|
|
44
|
-
}
|
|
21
|
+
await this.typecheck(options);
|
|
45
22
|
return result;
|
|
46
23
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import pathLib from "node:path";
|
|
2
|
+
import { execaCommand } from "execa";
|
|
3
|
+
import { globby } from "globby";
|
|
4
|
+
import ts from "typescript";
|
|
5
|
+
export default async function (optionsInput) {
|
|
6
|
+
const options = {
|
|
7
|
+
log: process.env.NODE_ENV !== "test",
|
|
8
|
+
stderr: "inherit",
|
|
9
|
+
...optionsInput
|
|
10
|
+
};
|
|
11
|
+
const {
|
|
12
|
+
config
|
|
13
|
+
} = ts.readConfigFile(pathLib.join(this.cwd, "tsconfig.json"), ts.sys.readFile);
|
|
14
|
+
const {
|
|
15
|
+
fileNames
|
|
16
|
+
} = ts.parseJsonConfigFileContent(config, ts.sys, this.cwd);
|
|
17
|
+
const vueFiles = await globby("**/*.vue", {
|
|
18
|
+
cwd: this.cwd,
|
|
19
|
+
dot: true,
|
|
20
|
+
ignore: ["**/node_modules/**"]
|
|
21
|
+
});
|
|
22
|
+
const allFileNames = [...fileNames, ...vueFiles];
|
|
23
|
+
if (allFileNames.length > 0) {
|
|
24
|
+
return execaCommand("vue-tsc --noEmit", {
|
|
25
|
+
...(options.log && {
|
|
26
|
+
stdout: "inherit"
|
|
27
|
+
}),
|
|
28
|
+
cwd: this.cwd,
|
|
29
|
+
stderr: options.stderr
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -13,7 +13,13 @@ export default function () {
|
|
|
13
13
|
// https://www.gitpod.io/docs/configure/workspaces/workspace-lifecycle#workspace-stopped
|
|
14
14
|
before: endent`
|
|
15
15
|
echo "corepack enable" >> /home/gitpod/.bashrc
|
|
16
|
+
|
|
17
|
+
# Prevent this prompt:
|
|
18
|
+
# pnpm install --frozen-lockfile
|
|
19
|
+
# ! Corepack is about to download https://registry.npmjs.org/pnpm/-/pnpm-10.7.1.tgz
|
|
20
|
+
# ? Do you want to continue? [Y/n]
|
|
16
21
|
echo "export COREPACK_ENABLE_DOWNLOAD_PROMPT=0" >> /home/gitpod/.bashrc
|
|
22
|
+
|
|
17
23
|
gitpod-env-per-project >> /home/gitpod/.bashrc
|
|
18
24
|
echo "export PUPPETEER_CACHE_DIR=/workspace/${packageName}/node_modules/.cache/puppeteer" >> /home/gitpod/.bashrc
|
|
19
25
|
echo "export PLAYWRIGHT_BROWSERS_PATH=0" >> /home/gitpod/.bashrc
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import
|
|
1
|
+
import defu from "@dword-design/defu";
|
|
2
2
|
import getRegexManagerString from "./get-regex-manager-string/index.js";
|
|
3
3
|
export default function () {
|
|
4
|
-
return
|
|
4
|
+
return defu(this.config.renovateConfig, {
|
|
5
5
|
extends: [":semanticCommits", ":semanticPrefixFix"],
|
|
6
6
|
gitIgnoredAuthors: ["actions@github.com"],
|
|
7
7
|
"github-actions": {
|
|
@@ -29,5 +29,5 @@ export default function () {
|
|
|
29
29
|
versioningTemplate: "node"
|
|
30
30
|
}],
|
|
31
31
|
semanticCommitScope: null
|
|
32
|
-
}
|
|
32
|
+
});
|
|
33
33
|
}
|
|
@@ -14,8 +14,8 @@ export default ({
|
|
|
14
14
|
if (gitUrl === void 0) {
|
|
15
15
|
return;
|
|
16
16
|
}
|
|
17
|
-
const gitInfo = hostedGitInfo.fromUrl(gitUrl)
|
|
18
|
-
if (gitInfo.type !== "github") {
|
|
17
|
+
const gitInfo = hostedGitInfo.fromUrl(gitUrl);
|
|
18
|
+
if (!gitInfo || gitInfo.type !== "github") {
|
|
19
19
|
throw new Error("Only GitHub repositories are supported.");
|
|
20
20
|
}
|
|
21
21
|
return gitInfo;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,57 @@
|
|
|
1
|
+
import type { Options as DepcheckOptions } from 'depcheck';
|
|
1
2
|
import { type ResultPromise } from 'execa';
|
|
3
|
+
import type GitHost from 'hosted-git-info';
|
|
4
|
+
import type { CommandInObjectInput, CommandObjectInObjectInput } from 'make-cli';
|
|
5
|
+
import type { RenovateConfig } from 'renovate/dist/config/types';
|
|
6
|
+
import type { PackageJson, TsConfigJson } from 'type-fest';
|
|
7
|
+
import type { CommandOptionsInput } from './commands/command-options-input';
|
|
8
|
+
type Config = {
|
|
9
|
+
name?: string;
|
|
10
|
+
global: boolean;
|
|
11
|
+
allowedMatches: string[];
|
|
12
|
+
commands: Record<string, CommandObjectInObjectInput>;
|
|
13
|
+
depcheckConfig: Omit<DepcheckOptions, 'package'>;
|
|
14
|
+
deployAssets: Array<{
|
|
15
|
+
label: string;
|
|
16
|
+
path: string;
|
|
17
|
+
}>;
|
|
18
|
+
deployEnv: Record<string, string>;
|
|
19
|
+
deployPlugins: string[];
|
|
20
|
+
editorIgnore: string[];
|
|
21
|
+
fetchGitHistory: boolean;
|
|
22
|
+
git?: GitHost;
|
|
23
|
+
gitignore: string[];
|
|
24
|
+
hasTypescriptConfigRootAlias: boolean;
|
|
25
|
+
lint: (optionsInput?: CommandOptionsInput) => void;
|
|
26
|
+
macos: boolean;
|
|
27
|
+
minNodeVersion: number;
|
|
28
|
+
nodeVersion: number;
|
|
29
|
+
preDeploySteps: string[];
|
|
30
|
+
prepare: (optionsInput?: CommandOptionsInput) => void;
|
|
31
|
+
readmeInstallString: string;
|
|
32
|
+
seeAlso: Array<{
|
|
33
|
+
description: string;
|
|
34
|
+
repository: string;
|
|
35
|
+
}>;
|
|
36
|
+
supportedNodeVersions: number[];
|
|
37
|
+
syncKeywords: boolean;
|
|
38
|
+
typescriptConfig: TsConfigJson;
|
|
39
|
+
windows: boolean;
|
|
40
|
+
testInContainer: boolean;
|
|
41
|
+
eslintConfig: string;
|
|
42
|
+
useJobMatrix: boolean;
|
|
43
|
+
packageConfig: PackageJson;
|
|
44
|
+
renovateConfig: RenovateConfig;
|
|
45
|
+
isLockFileFixCommitType: boolean;
|
|
46
|
+
};
|
|
47
|
+
type ConfigObjectInput = Omit<Partial<Config>, 'commands'> & {
|
|
48
|
+
commands?: Record<string, CommandInObjectInput>;
|
|
49
|
+
};
|
|
50
|
+
type ConfigObjectOrFunctionInput = ConfigObjectInput | ((this: Base) => ConfigObjectInput);
|
|
51
|
+
type ConfigInput = ConfigObjectOrFunctionInput | string | null;
|
|
2
52
|
declare class Base {
|
|
3
|
-
config:
|
|
4
|
-
packageConfig:
|
|
53
|
+
config: Config;
|
|
54
|
+
packageConfig: PackageJson;
|
|
5
55
|
cwd: string;
|
|
6
56
|
generatedFiles: any;
|
|
7
57
|
githubCodespacesConfig: {
|
|
@@ -9,6 +59,7 @@ declare class Base {
|
|
|
9
59
|
};
|
|
10
60
|
commit(...args: any[]): ResultPromise;
|
|
11
61
|
lint(...args: any[]): ResultPromise;
|
|
62
|
+
typecheck(...args: any[]): ResultPromise;
|
|
12
63
|
prepare(...args: any[]): void;
|
|
13
64
|
test(...args: any[]): ResultPromise;
|
|
14
65
|
testRaw(...args: any[]): ResultPromise;
|
|
@@ -30,7 +81,7 @@ declare class Base {
|
|
|
30
81
|
getRenovateConfig(...args: any[]): any;
|
|
31
82
|
getVscodeConfig(...args: any[]): any;
|
|
32
83
|
getTypescriptConfig(...args: any[]): any;
|
|
33
|
-
constructor(
|
|
84
|
+
constructor(configInput?: ConfigInput, { cwd }?: {
|
|
34
85
|
cwd?: string | undefined;
|
|
35
86
|
});
|
|
36
87
|
run(name: any, ...args: any[]): any;
|
|
@@ -38,3 +89,4 @@ declare class Base {
|
|
|
38
89
|
export { default as loadConfig } from './load-config';
|
|
39
90
|
export { default as loadConfigSync } from './load-config-sync';
|
|
40
91
|
export { Base };
|
|
92
|
+
export type { Config, ConfigInput };
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import pathLib from "node:path";
|
|
2
|
-
import
|
|
2
|
+
import { createDefu } from "@dword-design/defu";
|
|
3
3
|
import depcheck from "depcheck";
|
|
4
4
|
import depcheckDetectorBinName from "depcheck-detector-bin-name";
|
|
5
5
|
import depcheckDetectorExeca from "depcheck-detector-execa";
|
|
@@ -18,6 +18,7 @@ import prepare from "./commands/prepare/index.js";
|
|
|
18
18
|
import test from "./commands/test/index.js";
|
|
19
19
|
import testDocker from "./commands/test-docker/index.js";
|
|
20
20
|
import testRaw from "./commands/test-raw/index.js";
|
|
21
|
+
import typecheck from "./commands/typecheck/index.js";
|
|
21
22
|
import getDepcheckSpecialBase from "./get-depcheck-special-base/index.js";
|
|
22
23
|
import getGeneratedFiles from "./get-generated-files/index.js";
|
|
23
24
|
import getEditorIgnoreConfig from "./get-generated-files/get-editor-ignore/index.js";
|
|
@@ -32,16 +33,17 @@ import getPackageConfig from "./get-generated-files/get-package-config/index.js"
|
|
|
32
33
|
import getReadmeString from "./get-generated-files/get-readme-string/index.js";
|
|
33
34
|
import getReleaseConfig from "./get-generated-files/get-release/index.js";
|
|
34
35
|
import getRenovateConfig from "./get-generated-files/get-renovate/index.js";
|
|
35
|
-
import getTypescriptConfig from "./get-generated-files/get-typescript.js";
|
|
36
|
+
import getTypescriptConfig from "./get-generated-files/get-typescript/index.js";
|
|
36
37
|
import getVscodeConfig from "./get-generated-files/get-vscode/index.js";
|
|
37
38
|
import githubCodespacesConfig from "./get-generated-files/github-codespaces.js";
|
|
38
39
|
import getGitInfo from "./get-git-info/index.js";
|
|
39
|
-
const mergeConfigs = (
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
const mergeConfigs = createDefu((obj, key, value) => {
|
|
41
|
+
if (key === "supportedNodeVersions") {
|
|
42
|
+
obj[key] = value;
|
|
43
|
+
return true;
|
|
44
|
+
}
|
|
45
|
+
return false;
|
|
46
|
+
});
|
|
45
47
|
class Base {
|
|
46
48
|
config;
|
|
47
49
|
packageConfig;
|
|
@@ -54,6 +56,9 @@ class Base {
|
|
|
54
56
|
lint(...args) {
|
|
55
57
|
return lint.call(this, ...args);
|
|
56
58
|
}
|
|
59
|
+
typecheck(...args) {
|
|
60
|
+
return typecheck.call(this, ...args);
|
|
61
|
+
}
|
|
57
62
|
prepare(...args) {
|
|
58
63
|
return prepare.call(this, ...args);
|
|
59
64
|
}
|
|
@@ -117,19 +122,25 @@ class Base {
|
|
|
117
122
|
getTypescriptConfig(...args) {
|
|
118
123
|
return getTypescriptConfig.call(this, ...args);
|
|
119
124
|
}
|
|
120
|
-
constructor(
|
|
125
|
+
constructor(configInput = null, {
|
|
121
126
|
cwd = "."
|
|
122
127
|
} = {}) {
|
|
123
128
|
this.cwd = cwd;
|
|
124
129
|
const jitiInstance = createJiti(pathLib.resolve(this.cwd));
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
130
|
+
const config = (() => {
|
|
131
|
+
if (configInput === null) {
|
|
132
|
+
return {
|
|
133
|
+
name: packageName`@dword-design/base-config-node`
|
|
134
|
+
};
|
|
135
|
+
} else if (typeof configInput === "string") {
|
|
136
|
+
return {
|
|
137
|
+
name: configInput
|
|
138
|
+
};
|
|
139
|
+
} else if (typeof configInput === "function") {
|
|
140
|
+
return configInput.call(this);
|
|
141
|
+
}
|
|
142
|
+
return configInput;
|
|
143
|
+
})();
|
|
133
144
|
if (config.name) {
|
|
134
145
|
config.name = pluginNameToPackageName(config.name, "base-config");
|
|
135
146
|
}
|
|
@@ -149,16 +160,20 @@ class Base {
|
|
|
149
160
|
deployEnv: {},
|
|
150
161
|
deployPlugins: [],
|
|
151
162
|
editorIgnore: [],
|
|
163
|
+
eslintConfig: "",
|
|
152
164
|
fetchGitHistory: false,
|
|
153
165
|
git: getGitInfo({
|
|
154
166
|
cwd: this.cwd
|
|
155
167
|
}),
|
|
156
168
|
gitignore: [],
|
|
169
|
+
global: false,
|
|
157
170
|
hasTypescriptConfigRootAlias: true,
|
|
158
|
-
|
|
171
|
+
isLockFileFixCommitType: false,
|
|
172
|
+
lint: () => {},
|
|
159
173
|
macos: true,
|
|
160
174
|
minNodeVersion: null,
|
|
161
175
|
nodeVersion: 20,
|
|
176
|
+
packageConfig: {},
|
|
162
177
|
preDeploySteps: [],
|
|
163
178
|
prepare: identity,
|
|
164
179
|
readmeInstallString: endent`
|
|
@@ -172,26 +187,24 @@ class Base {
|
|
|
172
187
|
$ yarn ${config.global ? "global " : ""}add ${this.packageConfig.name}
|
|
173
188
|
\`\`\`
|
|
174
189
|
`,
|
|
190
|
+
renovateConfig: {},
|
|
175
191
|
seeAlso: [],
|
|
176
|
-
supportedNodeVersions: [
|
|
192
|
+
supportedNodeVersions: [20, 22],
|
|
177
193
|
syncKeywords: true,
|
|
194
|
+
testInContainer: false,
|
|
178
195
|
typescriptConfig: {},
|
|
196
|
+
useJobMatrix: true,
|
|
179
197
|
windows: true
|
|
180
198
|
};
|
|
181
|
-
const
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
if (typeof inheritedConfig === "function") {
|
|
189
|
-
inheritedConfig = inheritedConfig.call(this, mergeConfigs(defaultConfig, config));
|
|
190
|
-
}
|
|
191
|
-
configsToMerge.push(inheritedConfig);
|
|
199
|
+
const inheritedConfigPath = config.name && config.name === this.packageConfig.name ? pathLib.resolve(this.cwd, "src", "index.ts") : config.name;
|
|
200
|
+
let inheritedConfig = inheritedConfigPath ? jitiInstance(inheritedConfigPath) : void 0;
|
|
201
|
+
if (inheritedConfig && "default" in inheritedConfig) {
|
|
202
|
+
inheritedConfig = inheritedConfig.default;
|
|
203
|
+
}
|
|
204
|
+
if (typeof inheritedConfig === "function") {
|
|
205
|
+
inheritedConfig = inheritedConfig.call(this, mergeConfigs(defaultConfig, config));
|
|
192
206
|
}
|
|
193
|
-
|
|
194
|
-
this.config = mergeConfigs(...configsToMerge);
|
|
207
|
+
this.config = mergeConfigs(config, inheritedConfig, defaultConfig);
|
|
195
208
|
this.config = {
|
|
196
209
|
...this.config,
|
|
197
210
|
commands: mapValues(this.config.commands, command => typeof command === "function" ? {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dword-design/base",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "14.0.1",
|
|
4
4
|
"description": "Base package for projects.",
|
|
5
5
|
"repository": "dword-design/base",
|
|
6
6
|
"funding": "https://github.com/sponsors/dword-design",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@commitlint/cli": "^18.6.1",
|
|
35
35
|
"@commitlint/config-conventional": "^18.6.3",
|
|
36
|
-
"@dword-design/base-config-node": "^3.0.
|
|
36
|
+
"@dword-design/base-config-node": "^3.0.17",
|
|
37
37
|
"@dword-design/ci": "^4.0.6",
|
|
38
|
-
"@dword-design/defu": "^1.0.
|
|
38
|
+
"@dword-design/defu": "^1.0.3",
|
|
39
39
|
"@dword-design/eslint-config": "^7.0.7",
|
|
40
40
|
"@dword-design/personal-data": "^2.0.3",
|
|
41
41
|
"@semantic-release/changelog": "^6.0.3",
|
|
@@ -46,14 +46,13 @@
|
|
|
46
46
|
"commitizen": "^4.3.1",
|
|
47
47
|
"cosmiconfig": "^9.0.0",
|
|
48
48
|
"cz-conventional-changelog": "^3.3.0",
|
|
49
|
-
"deepmerge": "^4.3.1",
|
|
50
49
|
"depcheck": "npm:@dword-design/depcheck@^0.0.7",
|
|
51
50
|
"depcheck-detector-bin-name": "^1.0.2",
|
|
52
51
|
"depcheck-detector-execa": "^4.0.3",
|
|
53
52
|
"depcheck-detector-package-name": "^3.0.4",
|
|
54
53
|
"depcheck-package-name": "^3.0.1",
|
|
55
54
|
"endent": "npm:@dword-design/endent@^1.4.1",
|
|
56
|
-
"eslint": "^9.
|
|
55
|
+
"eslint": "^9.31.0",
|
|
57
56
|
"execa": "^9.6.0",
|
|
58
57
|
"find-up": "^7.0.0",
|
|
59
58
|
"fs-extra": "^11.3.0",
|
|
@@ -65,8 +64,8 @@
|
|
|
65
64
|
"is-ci": "^3.0.1",
|
|
66
65
|
"jiti": "^2.4.2",
|
|
67
66
|
"lodash-es": "^4.17.21",
|
|
68
|
-
"make-cli": "^4.0.
|
|
69
|
-
"output-files": "^
|
|
67
|
+
"make-cli": "^4.0.6",
|
|
68
|
+
"output-files": "^3.0.0",
|
|
70
69
|
"package-name-regex": "^4.0.3",
|
|
71
70
|
"parse-git-config": "npm:@dword-design/parse-git-config@^0.0.1",
|
|
72
71
|
"parse-packagejson-name": "^1.0.1",
|
|
@@ -79,22 +78,25 @@
|
|
|
79
78
|
"spdx-license-list": "^6.10.0",
|
|
80
79
|
"tagged-template-noop": "^2.1.1",
|
|
81
80
|
"tsx": "^4.20.3",
|
|
81
|
+
"type-fest": "^4.41.0",
|
|
82
82
|
"typescript": "^5.8.3",
|
|
83
|
-
"vue-tsc": "^2.2.
|
|
83
|
+
"vue-tsc": "^2.2.12",
|
|
84
84
|
"yaml": "^2.8.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
87
|
"@dword-design/dotenv-json-extended": "^3.0.3",
|
|
88
|
-
"@playwright/test": "^1.
|
|
88
|
+
"@playwright/test": "^1.54.1",
|
|
89
|
+
"@types/hosted-git-info": "^3.0.5",
|
|
90
|
+
"@types/parse-git-config": "^3.0.4",
|
|
89
91
|
"p-event": "^6.0.1",
|
|
90
92
|
"renovate": "^39.264.1",
|
|
91
|
-
"sharp": "^0.34.
|
|
93
|
+
"sharp": "^0.34.3",
|
|
92
94
|
"strip-ansi": "^7.1.0",
|
|
93
95
|
"uuid": "^11.1.0"
|
|
94
96
|
},
|
|
95
97
|
"packageManager": "pnpm@10.10.0+sha512.d615db246fe70f25dcfea6d8d73dee782ce23e2245e3c4f6f888249fb568149318637dca73c2c5c8ef2a4ca0d5657fb9567188bfab47f566d1ee6ce987815c39",
|
|
96
98
|
"engines": {
|
|
97
|
-
"node": ">=
|
|
99
|
+
"node": ">=20"
|
|
98
100
|
},
|
|
99
101
|
"publishConfig": {
|
|
100
102
|
"access": "public"
|
|
File without changes
|