@geekmidas/cli 1.10.38 → 1.10.40
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/CHANGELOG.md +21 -0
- package/dist/index.cjs +60 -35
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +60 -35
- package/dist/index.mjs.map +1 -1
- package/package.json +48 -23
- package/src/init/versions.ts +19 -19
package/package.json
CHANGED
|
@@ -1,34 +1,59 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekmidas/cli",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.40",
|
|
4
4
|
"description": "CLI tools for building Lambda handlers, server applications, and generating OpenAPI specs",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
|
-
"
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
"import": {
|
|
10
|
+
"types": "./dist/index.d.mts",
|
|
11
|
+
"default": "./dist/index.mjs"
|
|
12
|
+
},
|
|
13
|
+
"require": {
|
|
14
|
+
"types": "./dist/index.d.cts",
|
|
15
|
+
"default": "./dist/index.cjs"
|
|
16
|
+
}
|
|
12
17
|
},
|
|
13
18
|
"./config": {
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
"import": {
|
|
20
|
+
"types": "./dist/config.d.mts",
|
|
21
|
+
"default": "./dist/config.mjs"
|
|
22
|
+
},
|
|
23
|
+
"require": {
|
|
24
|
+
"types": "./dist/config.d.cts",
|
|
25
|
+
"default": "./dist/config.cjs"
|
|
26
|
+
}
|
|
17
27
|
},
|
|
18
28
|
"./workspace": {
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
29
|
+
"import": {
|
|
30
|
+
"types": "./dist/workspace/index.d.mts",
|
|
31
|
+
"default": "./dist/workspace/index.mjs"
|
|
32
|
+
},
|
|
33
|
+
"require": {
|
|
34
|
+
"types": "./dist/workspace/index.d.cts",
|
|
35
|
+
"default": "./dist/workspace/index.cjs"
|
|
36
|
+
}
|
|
22
37
|
},
|
|
23
38
|
"./openapi": {
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
39
|
+
"import": {
|
|
40
|
+
"types": "./dist/openapi.d.mts",
|
|
41
|
+
"default": "./dist/openapi.mjs"
|
|
42
|
+
},
|
|
43
|
+
"require": {
|
|
44
|
+
"types": "./dist/openapi.d.cts",
|
|
45
|
+
"default": "./dist/openapi.cjs"
|
|
46
|
+
}
|
|
27
47
|
},
|
|
28
48
|
"./openapi-react-query": {
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
49
|
+
"import": {
|
|
50
|
+
"types": "./dist/openapi-react-query.d.mts",
|
|
51
|
+
"default": "./dist/openapi-react-query.mjs"
|
|
52
|
+
},
|
|
53
|
+
"require": {
|
|
54
|
+
"types": "./dist/openapi-react-query.d.cts",
|
|
55
|
+
"default": "./dist/openapi-react-query.cjs"
|
|
56
|
+
}
|
|
32
57
|
}
|
|
33
58
|
},
|
|
34
59
|
"bin": {
|
|
@@ -56,11 +81,11 @@
|
|
|
56
81
|
"prompts": "~2.4.2",
|
|
57
82
|
"tsx": "~4.20.3",
|
|
58
83
|
"yaml": "~2.8.2",
|
|
59
|
-
"@geekmidas/errors": "~1.0.
|
|
60
|
-
"@geekmidas/
|
|
61
|
-
"@geekmidas/
|
|
62
|
-
"@geekmidas/schema": "~1.0.
|
|
63
|
-
"@geekmidas/envkit": "~1.0.
|
|
84
|
+
"@geekmidas/errors": "~1.0.1",
|
|
85
|
+
"@geekmidas/logger": "~1.0.2",
|
|
86
|
+
"@geekmidas/constructs": "~3.1.0",
|
|
87
|
+
"@geekmidas/schema": "~1.0.2",
|
|
88
|
+
"@geekmidas/envkit": "~1.0.7"
|
|
64
89
|
},
|
|
65
90
|
"devDependencies": {
|
|
66
91
|
"@types/lodash.kebabcase": "^4.1.9",
|
|
@@ -70,10 +95,10 @@
|
|
|
70
95
|
"typescript": "^5.8.2",
|
|
71
96
|
"vitest": "^3.2.4",
|
|
72
97
|
"zod": "~4.1.13",
|
|
73
|
-
"@geekmidas/testkit": "1.0.
|
|
98
|
+
"@geekmidas/testkit": "1.0.9"
|
|
74
99
|
},
|
|
75
100
|
"peerDependencies": {
|
|
76
|
-
"@geekmidas/telescope": "~1.0.
|
|
101
|
+
"@geekmidas/telescope": "~1.0.1"
|
|
77
102
|
},
|
|
78
103
|
"peerDependenciesMeta": {
|
|
79
104
|
"@geekmidas/telescope": {
|
package/src/init/versions.ts
CHANGED
|
@@ -27,25 +27,25 @@ export const CLI_VERSION = `~${pkg.version}`;
|
|
|
27
27
|
* Run: pnpm --filter @geekmidas/cli sync-versions
|
|
28
28
|
*/
|
|
29
29
|
export const GEEKMIDAS_VERSIONS = {
|
|
30
|
-
'@geekmidas/audit': '~2.0.
|
|
31
|
-
'@geekmidas/auth': '~2.0.
|
|
32
|
-
'@geekmidas/cache': '~1.1.
|
|
33
|
-
'@geekmidas/client': '~4.0.
|
|
34
|
-
'@geekmidas/cloud': '~1.0.
|
|
35
|
-
'@geekmidas/constructs': '~3.0.
|
|
36
|
-
'@geekmidas/db': '~1.0.
|
|
37
|
-
'@geekmidas/emailkit': '~1.0.
|
|
38
|
-
'@geekmidas/envkit': '~1.0.
|
|
39
|
-
'@geekmidas/errors': '~1.0.
|
|
40
|
-
'@geekmidas/events': '~1.1.
|
|
41
|
-
'@geekmidas/logger': '~1.0.
|
|
42
|
-
'@geekmidas/rate-limit': '~2.0.
|
|
43
|
-
'@geekmidas/schema': '~1.0.
|
|
44
|
-
'@geekmidas/services': '~1.0.
|
|
45
|
-
'@geekmidas/storage': '~2.0.
|
|
46
|
-
'@geekmidas/studio': '~1.0.
|
|
47
|
-
'@geekmidas/telescope': '~1.0.
|
|
48
|
-
'@geekmidas/testkit': '~1.0.
|
|
30
|
+
'@geekmidas/audit': '~2.0.1',
|
|
31
|
+
'@geekmidas/auth': '~2.0.1',
|
|
32
|
+
'@geekmidas/cache': '~1.1.1',
|
|
33
|
+
'@geekmidas/client': '~4.0.5',
|
|
34
|
+
'@geekmidas/cloud': '~1.0.1',
|
|
35
|
+
'@geekmidas/constructs': '~3.0.14',
|
|
36
|
+
'@geekmidas/db': '~1.0.2',
|
|
37
|
+
'@geekmidas/emailkit': '~1.0.1',
|
|
38
|
+
'@geekmidas/envkit': '~1.0.7',
|
|
39
|
+
'@geekmidas/errors': '~1.0.1',
|
|
40
|
+
'@geekmidas/events': '~1.1.4',
|
|
41
|
+
'@geekmidas/logger': '~1.0.2',
|
|
42
|
+
'@geekmidas/rate-limit': '~2.0.1',
|
|
43
|
+
'@geekmidas/schema': '~1.0.2',
|
|
44
|
+
'@geekmidas/services': '~1.0.4',
|
|
45
|
+
'@geekmidas/storage': '~2.0.3',
|
|
46
|
+
'@geekmidas/studio': '~1.0.1',
|
|
47
|
+
'@geekmidas/telescope': '~1.0.1',
|
|
48
|
+
'@geekmidas/testkit': '~1.0.9',
|
|
49
49
|
'@geekmidas/cli': CLI_VERSION,
|
|
50
50
|
} as const;
|
|
51
51
|
|