@techstack/tcm-cli 1.4.43 → 1.4.45
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/templates/utils/index.d.ts +13 -15
- package/package.json +11 -11
|
@@ -18,10 +18,10 @@ export declare const composePackageJson: (template: Template) => ({ name, author
|
|
|
18
18
|
homepage?: import("type-fest").LiteralUnion<".", string>;
|
|
19
19
|
bugs?: import("type-fest").PackageJson.BugsLocation;
|
|
20
20
|
license?: string;
|
|
21
|
-
licenses?: {
|
|
21
|
+
licenses?: Array<{
|
|
22
22
|
type?: string;
|
|
23
23
|
url?: string;
|
|
24
|
-
}
|
|
24
|
+
}>;
|
|
25
25
|
contributors?: import("type-fest").PackageJson.Person[];
|
|
26
26
|
maintainers?: import("type-fest").PackageJson.Person[];
|
|
27
27
|
files?: string[];
|
|
@@ -39,21 +39,19 @@ export declare const composePackageJson: (template: Template) => ({ name, author
|
|
|
39
39
|
};
|
|
40
40
|
scripts?: import("type-fest").PackageJson.Scripts;
|
|
41
41
|
config?: import("type-fest").JsonObject;
|
|
42
|
-
dependencies?:
|
|
43
|
-
devDependencies?:
|
|
44
|
-
optionalDependencies?:
|
|
45
|
-
peerDependencies?:
|
|
42
|
+
dependencies?: import("type-fest").PackageJson.Dependency;
|
|
43
|
+
devDependencies?: import("type-fest").PackageJson.Dependency;
|
|
44
|
+
optionalDependencies?: import("type-fest").PackageJson.Dependency;
|
|
45
|
+
peerDependencies?: import("type-fest").PackageJson.Dependency;
|
|
46
46
|
peerDependenciesMeta?: Partial<Record<string, {
|
|
47
47
|
optional: true;
|
|
48
48
|
}>>;
|
|
49
49
|
bundledDependencies?: string[];
|
|
50
50
|
bundleDependencies?: string[];
|
|
51
|
-
engines?: {
|
|
52
|
-
[x: string]: string;
|
|
53
|
-
};
|
|
51
|
+
engines?: { [EngineName in "npm" | "node" | string]?: string; };
|
|
54
52
|
engineStrict?: boolean;
|
|
55
|
-
os?: import("type-fest").LiteralUnion<"aix" | "darwin" | "freebsd" | "linux" | "openbsd" | "sunos" | "win32" | "!aix" | "!darwin" | "!freebsd" | "!linux" | "!openbsd" | "!sunos" | "!win32", string
|
|
56
|
-
cpu?: import("type-fest").LiteralUnion<"arm" | "arm64" | "ia32" | "mips" | "mipsel" | "ppc" | "ppc64" | "s390" | "s390x" | "x32" | "x64" | "!arm" | "!arm64" | "!ia32" | "!mips" | "!mipsel" | "!ppc" | "!ppc64" | "!s390" | "!s390x" | "!x32" | "!x64", string
|
|
53
|
+
os?: Array<import("type-fest").LiteralUnion<"aix" | "darwin" | "freebsd" | "linux" | "openbsd" | "sunos" | "win32" | "!aix" | "!darwin" | "!freebsd" | "!linux" | "!openbsd" | "!sunos" | "!win32", string>>;
|
|
54
|
+
cpu?: Array<import("type-fest").LiteralUnion<"arm" | "arm64" | "ia32" | "mips" | "mipsel" | "ppc" | "ppc64" | "s390" | "s390x" | "x32" | "x64" | "!arm" | "!arm64" | "!ia32" | "!mips" | "!mipsel" | "!ppc" | "!ppc64" | "!s390" | "!s390x" | "!x32" | "!x64", string>>;
|
|
57
55
|
preferGlobal?: boolean;
|
|
58
56
|
private?: boolean;
|
|
59
57
|
publishConfig?: import("type-fest").PackageJson.PublishConfig;
|
|
@@ -61,9 +59,9 @@ export declare const composePackageJson: (template: Template) => ({ name, author
|
|
|
61
59
|
type?: import("type-fest").LiteralUnion<"github" | "opencollective" | "patreon" | "individual" | "foundation" | "corporation", string>;
|
|
62
60
|
url: string;
|
|
63
61
|
};
|
|
64
|
-
workspaces?:
|
|
62
|
+
workspaces?: import("type-fest").PackageJson.WorkspacePattern[] | import("type-fest").PackageJson.WorkspaceConfig;
|
|
65
63
|
esnext?: string | {
|
|
66
|
-
[moduleName: string]: string;
|
|
64
|
+
[moduleName: string]: string | undefined;
|
|
67
65
|
main?: string;
|
|
68
66
|
browser?: string;
|
|
69
67
|
};
|
|
@@ -73,9 +71,9 @@ export declare const composePackageJson: (template: Template) => ({ name, author
|
|
|
73
71
|
typesVersions?: Partial<Record<string, Partial<Record<string, string[]>>>>;
|
|
74
72
|
typings?: string;
|
|
75
73
|
flat?: boolean;
|
|
76
|
-
resolutions?:
|
|
74
|
+
resolutions?: import("type-fest").PackageJson.Dependency;
|
|
77
75
|
jspm?: import("type-fest").PackageJson;
|
|
78
|
-
prettier?: Record<string, string |
|
|
76
|
+
prettier?: Record<string, string | boolean | number>;
|
|
79
77
|
jest?: Record<string, string>;
|
|
80
78
|
};
|
|
81
79
|
export declare const composeDependencies: (template: Template) => () => string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techstack/tcm-cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.45",
|
|
4
4
|
"description": "Zero-config TypeScript package development",
|
|
5
5
|
"homepage": "https://github.com/The-Code-Monkey/TechStack/blob/dev/packages/tcm-cli/README.md",
|
|
6
6
|
"repository": {
|
|
@@ -52,13 +52,13 @@
|
|
|
52
52
|
"@typescript-eslint/eslint-plugin": "7.18.0",
|
|
53
53
|
"@typescript-eslint/parser": "7.18.0",
|
|
54
54
|
"asyncro": "3.0.0",
|
|
55
|
-
"babel-plugin-annotate-pure-calls": "0.
|
|
55
|
+
"babel-plugin-annotate-pure-calls": "0.5.0",
|
|
56
56
|
"babel-plugin-dev-expression": "0.2.3",
|
|
57
57
|
"babel-plugin-macros": "3.1.0",
|
|
58
58
|
"babel-plugin-polyfill-regenerator": "0.6.4",
|
|
59
59
|
"babel-plugin-transform-rename-import": "2.3.0",
|
|
60
60
|
"camelcase": "8.0.0",
|
|
61
|
-
"chalk": "5.
|
|
61
|
+
"chalk": "5.4.1",
|
|
62
62
|
"colorette": "2.0.20",
|
|
63
63
|
"confusing-browser-globals": "1.0.11",
|
|
64
64
|
"enquirer": "2.4.1",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"eslint-config-prettier": "10.1.1",
|
|
67
67
|
"eslint-config-react-app": "7.0.1",
|
|
68
68
|
"eslint-plugin-flowtype": "8.0.3",
|
|
69
|
-
"eslint-plugin-import": "2.
|
|
69
|
+
"eslint-plugin-import": "2.31.0",
|
|
70
70
|
"eslint-plugin-jest": "28.5.0",
|
|
71
71
|
"eslint-plugin-jsx-a11y": "6.8.0",
|
|
72
72
|
"eslint-plugin-no-restricted-imports": "0.0.0",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"eslint-plugin-react": "7.34.2",
|
|
75
75
|
"eslint-plugin-react-hooks": "4.6.2",
|
|
76
76
|
"eslint-plugin-testing-library": "7.1.1",
|
|
77
|
-
"execa": "9.
|
|
78
|
-
"figlet": "1.
|
|
77
|
+
"execa": "9.5.2",
|
|
78
|
+
"figlet": "1.8.0",
|
|
79
79
|
"fs-extra": "11.3.0",
|
|
80
80
|
"jest": "29.7.0",
|
|
81
81
|
"jest-environment-jsdom": "29.7.0",
|
|
@@ -94,14 +94,14 @@
|
|
|
94
94
|
"rollup-plugin-typescript2": "0.36.0",
|
|
95
95
|
"sade": "1.8.1",
|
|
96
96
|
"semver": "7.7.1",
|
|
97
|
-
"shelljs": "0.
|
|
97
|
+
"shelljs": "0.9.2",
|
|
98
98
|
"sort-package-json": "3.0.0",
|
|
99
99
|
"tiny-glob": "0.2.9",
|
|
100
100
|
"ts-jest": "29.2.6",
|
|
101
101
|
"ts-node": "10.9.1",
|
|
102
|
-
"tslib": "2.
|
|
102
|
+
"tslib": "2.8.1",
|
|
103
103
|
"type-fest": "4.37.0",
|
|
104
|
-
"typescript": "5.
|
|
104
|
+
"typescript": "5.8.2"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
107
|
"@commitlint/cli": "19.8.0",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"@types/color": "4.2.0",
|
|
110
110
|
"@types/cssnano": "5.1.3",
|
|
111
111
|
"@types/eslint": "8.56.12",
|
|
112
|
-
"@types/figlet": "1.
|
|
112
|
+
"@types/figlet": "1.7.0",
|
|
113
113
|
"@types/fs-extra": "11.0.4",
|
|
114
114
|
"@types/lodash": "4.17.16",
|
|
115
115
|
"@types/node": "18.17.1",
|
|
@@ -146,5 +146,5 @@
|
|
|
146
146
|
"import/no-unresolved": "warn"
|
|
147
147
|
}
|
|
148
148
|
},
|
|
149
|
-
"gitHead": "
|
|
149
|
+
"gitHead": "d50baf17eea6a7bccbb264e5b8da663a3879f3aa"
|
|
150
150
|
}
|