@memberjunction/cli 5.45.0 → 5.46.0
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/oclif.manifest.json +235 -235
- package/package.json +17 -17
package/oclif.manifest.json
CHANGED
|
@@ -1977,6 +1977,240 @@
|
|
|
1977
1977
|
"index.js"
|
|
1978
1978
|
]
|
|
1979
1979
|
},
|
|
1980
|
+
"install:claude": {
|
|
1981
|
+
"aliases": [],
|
|
1982
|
+
"args": {},
|
|
1983
|
+
"description": "Install or refresh the Claude Code pack in the current directory.",
|
|
1984
|
+
"examples": [
|
|
1985
|
+
"<%= config.bin %> install:claude",
|
|
1986
|
+
"<%= config.bin %> install:claude --dry-run",
|
|
1987
|
+
"<%= config.bin %> install:claude --from ./local-pack",
|
|
1988
|
+
"<%= config.bin %> install:claude --json"
|
|
1989
|
+
],
|
|
1990
|
+
"flags": {
|
|
1991
|
+
"dir": {
|
|
1992
|
+
"description": "Target directory for the install",
|
|
1993
|
+
"name": "dir",
|
|
1994
|
+
"default": ".",
|
|
1995
|
+
"hasDynamicHelp": false,
|
|
1996
|
+
"multiple": false,
|
|
1997
|
+
"type": "option"
|
|
1998
|
+
},
|
|
1999
|
+
"major": {
|
|
2000
|
+
"description": "Force a specific MJ major (default: detected from package.json)",
|
|
2001
|
+
"name": "major",
|
|
2002
|
+
"hasDynamicHelp": false,
|
|
2003
|
+
"multiple": false,
|
|
2004
|
+
"type": "option"
|
|
2005
|
+
},
|
|
2006
|
+
"ref": {
|
|
2007
|
+
"description": "Git ref to fetch from (branch or tag). Default: main.",
|
|
2008
|
+
"name": "ref",
|
|
2009
|
+
"hasDynamicHelp": false,
|
|
2010
|
+
"multiple": false,
|
|
2011
|
+
"type": "option"
|
|
2012
|
+
},
|
|
2013
|
+
"from": {
|
|
2014
|
+
"description": "Use a local pack source instead of fetching from GitHub",
|
|
2015
|
+
"name": "from",
|
|
2016
|
+
"hasDynamicHelp": false,
|
|
2017
|
+
"multiple": false,
|
|
2018
|
+
"type": "option"
|
|
2019
|
+
},
|
|
2020
|
+
"offline": {
|
|
2021
|
+
"description": "Forbid network; requires --from <path>",
|
|
2022
|
+
"name": "offline",
|
|
2023
|
+
"allowNo": false,
|
|
2024
|
+
"type": "boolean"
|
|
2025
|
+
},
|
|
2026
|
+
"dry-run": {
|
|
2027
|
+
"description": "Print what would be written; change nothing",
|
|
2028
|
+
"name": "dry-run",
|
|
2029
|
+
"allowNo": false,
|
|
2030
|
+
"type": "boolean"
|
|
2031
|
+
},
|
|
2032
|
+
"yes": {
|
|
2033
|
+
"char": "y",
|
|
2034
|
+
"description": "Don't prompt (reserved for future interactive paths; currently no-op)",
|
|
2035
|
+
"name": "yes",
|
|
2036
|
+
"allowNo": false,
|
|
2037
|
+
"type": "boolean"
|
|
2038
|
+
},
|
|
2039
|
+
"force": {
|
|
2040
|
+
"description": "Overwrite user-customized commands/skills (saves .bak files)",
|
|
2041
|
+
"name": "force",
|
|
2042
|
+
"allowNo": false,
|
|
2043
|
+
"type": "boolean"
|
|
2044
|
+
},
|
|
2045
|
+
"skip-commands": {
|
|
2046
|
+
"description": "Skip seeding .claude/commands/",
|
|
2047
|
+
"name": "skip-commands",
|
|
2048
|
+
"allowNo": false,
|
|
2049
|
+
"type": "boolean"
|
|
2050
|
+
},
|
|
2051
|
+
"skip-skills": {
|
|
2052
|
+
"description": "Skip seeding .claude/skills/",
|
|
2053
|
+
"name": "skip-skills",
|
|
2054
|
+
"allowNo": false,
|
|
2055
|
+
"type": "boolean"
|
|
2056
|
+
},
|
|
2057
|
+
"skip-settings": {
|
|
2058
|
+
"description": "Skip merging .claude/settings.json",
|
|
2059
|
+
"name": "skip-settings",
|
|
2060
|
+
"allowNo": false,
|
|
2061
|
+
"type": "boolean"
|
|
2062
|
+
},
|
|
2063
|
+
"json": {
|
|
2064
|
+
"description": "Output as JSON (matches plan §7.5 schema)",
|
|
2065
|
+
"name": "json",
|
|
2066
|
+
"allowNo": false,
|
|
2067
|
+
"type": "boolean"
|
|
2068
|
+
},
|
|
2069
|
+
"verbose": {
|
|
2070
|
+
"char": "v",
|
|
2071
|
+
"description": "Show progress messages from the fetcher and merger",
|
|
2072
|
+
"name": "verbose",
|
|
2073
|
+
"allowNo": false,
|
|
2074
|
+
"type": "boolean"
|
|
2075
|
+
}
|
|
2076
|
+
},
|
|
2077
|
+
"hasDynamicHelp": false,
|
|
2078
|
+
"hiddenAliases": [],
|
|
2079
|
+
"id": "install:claude",
|
|
2080
|
+
"pluginAlias": "@memberjunction/cli",
|
|
2081
|
+
"pluginName": "@memberjunction/cli",
|
|
2082
|
+
"pluginType": "core",
|
|
2083
|
+
"strict": true,
|
|
2084
|
+
"enableJsonFlag": false,
|
|
2085
|
+
"isESM": true,
|
|
2086
|
+
"relativePath": [
|
|
2087
|
+
"dist",
|
|
2088
|
+
"commands",
|
|
2089
|
+
"install",
|
|
2090
|
+
"claude.js"
|
|
2091
|
+
]
|
|
2092
|
+
},
|
|
2093
|
+
"install": {
|
|
2094
|
+
"aliases": [],
|
|
2095
|
+
"args": {},
|
|
2096
|
+
"description": "Install MemberJunction from a GitHub release",
|
|
2097
|
+
"examples": [
|
|
2098
|
+
"<%= config.bin %> <%= command.id %>",
|
|
2099
|
+
"<%= config.bin %> <%= command.id %> -t v4.3.0",
|
|
2100
|
+
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
2101
|
+
"<%= config.bin %> <%= command.id %> --yes"
|
|
2102
|
+
],
|
|
2103
|
+
"flags": {
|
|
2104
|
+
"tag": {
|
|
2105
|
+
"char": "t",
|
|
2106
|
+
"description": "Release tag to install (e.g. v4.3.0). If omitted, shows a version picker.",
|
|
2107
|
+
"name": "tag",
|
|
2108
|
+
"hasDynamicHelp": false,
|
|
2109
|
+
"multiple": false,
|
|
2110
|
+
"type": "option"
|
|
2111
|
+
},
|
|
2112
|
+
"dir": {
|
|
2113
|
+
"description": "Target directory for the installation",
|
|
2114
|
+
"name": "dir",
|
|
2115
|
+
"default": ".",
|
|
2116
|
+
"hasDynamicHelp": false,
|
|
2117
|
+
"multiple": false,
|
|
2118
|
+
"type": "option"
|
|
2119
|
+
},
|
|
2120
|
+
"config": {
|
|
2121
|
+
"char": "c",
|
|
2122
|
+
"description": "Path to JSON config file with install settings (database, auth, ports, etc.)",
|
|
2123
|
+
"name": "config",
|
|
2124
|
+
"hasDynamicHelp": false,
|
|
2125
|
+
"multiple": false,
|
|
2126
|
+
"type": "option"
|
|
2127
|
+
},
|
|
2128
|
+
"legacy": {
|
|
2129
|
+
"description": "Use the legacy interactive installer (ZIP-only distribution)",
|
|
2130
|
+
"hidden": true,
|
|
2131
|
+
"name": "legacy",
|
|
2132
|
+
"allowNo": false,
|
|
2133
|
+
"type": "boolean"
|
|
2134
|
+
},
|
|
2135
|
+
"dry-run": {
|
|
2136
|
+
"description": "Show the install plan without executing it",
|
|
2137
|
+
"name": "dry-run",
|
|
2138
|
+
"allowNo": false,
|
|
2139
|
+
"type": "boolean"
|
|
2140
|
+
},
|
|
2141
|
+
"yes": {
|
|
2142
|
+
"char": "y",
|
|
2143
|
+
"description": "Non-interactive mode: auto-select latest version and accept defaults",
|
|
2144
|
+
"name": "yes",
|
|
2145
|
+
"allowNo": false,
|
|
2146
|
+
"type": "boolean"
|
|
2147
|
+
},
|
|
2148
|
+
"verbose": {
|
|
2149
|
+
"char": "v",
|
|
2150
|
+
"description": "Show detailed output",
|
|
2151
|
+
"name": "verbose",
|
|
2152
|
+
"allowNo": false,
|
|
2153
|
+
"type": "boolean"
|
|
2154
|
+
},
|
|
2155
|
+
"skip-db": {
|
|
2156
|
+
"description": "Skip database provisioning phases",
|
|
2157
|
+
"name": "skip-db",
|
|
2158
|
+
"allowNo": false,
|
|
2159
|
+
"type": "boolean"
|
|
2160
|
+
},
|
|
2161
|
+
"skip-start": {
|
|
2162
|
+
"description": "Skip service startup and smoke tests",
|
|
2163
|
+
"name": "skip-start",
|
|
2164
|
+
"allowNo": false,
|
|
2165
|
+
"type": "boolean"
|
|
2166
|
+
},
|
|
2167
|
+
"no-resume": {
|
|
2168
|
+
"description": "Ignore any existing checkpoint and start fresh",
|
|
2169
|
+
"name": "no-resume",
|
|
2170
|
+
"allowNo": false,
|
|
2171
|
+
"type": "boolean"
|
|
2172
|
+
},
|
|
2173
|
+
"fast": {
|
|
2174
|
+
"description": "Fast mode: skip smoke test and optimize post-codegen steps. Re-run without --fast if you encounter issues.",
|
|
2175
|
+
"name": "fast",
|
|
2176
|
+
"allowNo": false,
|
|
2177
|
+
"type": "boolean"
|
|
2178
|
+
},
|
|
2179
|
+
"overwrite-config": {
|
|
2180
|
+
"description": "Overwrite existing config files (.env, mj.config.cjs, environment.ts) instead of preserving them",
|
|
2181
|
+
"name": "overwrite-config",
|
|
2182
|
+
"allowNo": false,
|
|
2183
|
+
"type": "boolean"
|
|
2184
|
+
},
|
|
2185
|
+
"monorepo": {
|
|
2186
|
+
"description": "Install the full MemberJunction source repository instead of the lightweight distribution. Use this for MJ framework development.",
|
|
2187
|
+
"name": "monorepo",
|
|
2188
|
+
"allowNo": false,
|
|
2189
|
+
"type": "boolean"
|
|
2190
|
+
},
|
|
2191
|
+
"no-claude-pack": {
|
|
2192
|
+
"description": "Exclude the Claude Code pack (CLAUDE.md + .claude/ tree) from the scaffold. By default the pack ships with the install so opening Claude Code in your new MJ project gives you the curated MJ-aware experience immediately.",
|
|
2193
|
+
"name": "no-claude-pack",
|
|
2194
|
+
"allowNo": false,
|
|
2195
|
+
"type": "boolean"
|
|
2196
|
+
}
|
|
2197
|
+
},
|
|
2198
|
+
"hasDynamicHelp": false,
|
|
2199
|
+
"hiddenAliases": [],
|
|
2200
|
+
"id": "install",
|
|
2201
|
+
"pluginAlias": "@memberjunction/cli",
|
|
2202
|
+
"pluginName": "@memberjunction/cli",
|
|
2203
|
+
"pluginType": "core",
|
|
2204
|
+
"strict": true,
|
|
2205
|
+
"enableJsonFlag": false,
|
|
2206
|
+
"isESM": true,
|
|
2207
|
+
"relativePath": [
|
|
2208
|
+
"dist",
|
|
2209
|
+
"commands",
|
|
2210
|
+
"install",
|
|
2211
|
+
"index.js"
|
|
2212
|
+
]
|
|
2213
|
+
},
|
|
1980
2214
|
"migrate:convert": {
|
|
1981
2215
|
"aliases": [],
|
|
1982
2216
|
"args": {},
|
|
@@ -2266,240 +2500,6 @@
|
|
|
2266
2500
|
"rebake.js"
|
|
2267
2501
|
]
|
|
2268
2502
|
},
|
|
2269
|
-
"install:claude": {
|
|
2270
|
-
"aliases": [],
|
|
2271
|
-
"args": {},
|
|
2272
|
-
"description": "Install or refresh the Claude Code pack in the current directory.",
|
|
2273
|
-
"examples": [
|
|
2274
|
-
"<%= config.bin %> install:claude",
|
|
2275
|
-
"<%= config.bin %> install:claude --dry-run",
|
|
2276
|
-
"<%= config.bin %> install:claude --from ./local-pack",
|
|
2277
|
-
"<%= config.bin %> install:claude --json"
|
|
2278
|
-
],
|
|
2279
|
-
"flags": {
|
|
2280
|
-
"dir": {
|
|
2281
|
-
"description": "Target directory for the install",
|
|
2282
|
-
"name": "dir",
|
|
2283
|
-
"default": ".",
|
|
2284
|
-
"hasDynamicHelp": false,
|
|
2285
|
-
"multiple": false,
|
|
2286
|
-
"type": "option"
|
|
2287
|
-
},
|
|
2288
|
-
"major": {
|
|
2289
|
-
"description": "Force a specific MJ major (default: detected from package.json)",
|
|
2290
|
-
"name": "major",
|
|
2291
|
-
"hasDynamicHelp": false,
|
|
2292
|
-
"multiple": false,
|
|
2293
|
-
"type": "option"
|
|
2294
|
-
},
|
|
2295
|
-
"ref": {
|
|
2296
|
-
"description": "Git ref to fetch from (branch or tag). Default: main.",
|
|
2297
|
-
"name": "ref",
|
|
2298
|
-
"hasDynamicHelp": false,
|
|
2299
|
-
"multiple": false,
|
|
2300
|
-
"type": "option"
|
|
2301
|
-
},
|
|
2302
|
-
"from": {
|
|
2303
|
-
"description": "Use a local pack source instead of fetching from GitHub",
|
|
2304
|
-
"name": "from",
|
|
2305
|
-
"hasDynamicHelp": false,
|
|
2306
|
-
"multiple": false,
|
|
2307
|
-
"type": "option"
|
|
2308
|
-
},
|
|
2309
|
-
"offline": {
|
|
2310
|
-
"description": "Forbid network; requires --from <path>",
|
|
2311
|
-
"name": "offline",
|
|
2312
|
-
"allowNo": false,
|
|
2313
|
-
"type": "boolean"
|
|
2314
|
-
},
|
|
2315
|
-
"dry-run": {
|
|
2316
|
-
"description": "Print what would be written; change nothing",
|
|
2317
|
-
"name": "dry-run",
|
|
2318
|
-
"allowNo": false,
|
|
2319
|
-
"type": "boolean"
|
|
2320
|
-
},
|
|
2321
|
-
"yes": {
|
|
2322
|
-
"char": "y",
|
|
2323
|
-
"description": "Don't prompt (reserved for future interactive paths; currently no-op)",
|
|
2324
|
-
"name": "yes",
|
|
2325
|
-
"allowNo": false,
|
|
2326
|
-
"type": "boolean"
|
|
2327
|
-
},
|
|
2328
|
-
"force": {
|
|
2329
|
-
"description": "Overwrite user-customized commands/skills (saves .bak files)",
|
|
2330
|
-
"name": "force",
|
|
2331
|
-
"allowNo": false,
|
|
2332
|
-
"type": "boolean"
|
|
2333
|
-
},
|
|
2334
|
-
"skip-commands": {
|
|
2335
|
-
"description": "Skip seeding .claude/commands/",
|
|
2336
|
-
"name": "skip-commands",
|
|
2337
|
-
"allowNo": false,
|
|
2338
|
-
"type": "boolean"
|
|
2339
|
-
},
|
|
2340
|
-
"skip-skills": {
|
|
2341
|
-
"description": "Skip seeding .claude/skills/",
|
|
2342
|
-
"name": "skip-skills",
|
|
2343
|
-
"allowNo": false,
|
|
2344
|
-
"type": "boolean"
|
|
2345
|
-
},
|
|
2346
|
-
"skip-settings": {
|
|
2347
|
-
"description": "Skip merging .claude/settings.json",
|
|
2348
|
-
"name": "skip-settings",
|
|
2349
|
-
"allowNo": false,
|
|
2350
|
-
"type": "boolean"
|
|
2351
|
-
},
|
|
2352
|
-
"json": {
|
|
2353
|
-
"description": "Output as JSON (matches plan §7.5 schema)",
|
|
2354
|
-
"name": "json",
|
|
2355
|
-
"allowNo": false,
|
|
2356
|
-
"type": "boolean"
|
|
2357
|
-
},
|
|
2358
|
-
"verbose": {
|
|
2359
|
-
"char": "v",
|
|
2360
|
-
"description": "Show progress messages from the fetcher and merger",
|
|
2361
|
-
"name": "verbose",
|
|
2362
|
-
"allowNo": false,
|
|
2363
|
-
"type": "boolean"
|
|
2364
|
-
}
|
|
2365
|
-
},
|
|
2366
|
-
"hasDynamicHelp": false,
|
|
2367
|
-
"hiddenAliases": [],
|
|
2368
|
-
"id": "install:claude",
|
|
2369
|
-
"pluginAlias": "@memberjunction/cli",
|
|
2370
|
-
"pluginName": "@memberjunction/cli",
|
|
2371
|
-
"pluginType": "core",
|
|
2372
|
-
"strict": true,
|
|
2373
|
-
"enableJsonFlag": false,
|
|
2374
|
-
"isESM": true,
|
|
2375
|
-
"relativePath": [
|
|
2376
|
-
"dist",
|
|
2377
|
-
"commands",
|
|
2378
|
-
"install",
|
|
2379
|
-
"claude.js"
|
|
2380
|
-
]
|
|
2381
|
-
},
|
|
2382
|
-
"install": {
|
|
2383
|
-
"aliases": [],
|
|
2384
|
-
"args": {},
|
|
2385
|
-
"description": "Install MemberJunction from a GitHub release",
|
|
2386
|
-
"examples": [
|
|
2387
|
-
"<%= config.bin %> <%= command.id %>",
|
|
2388
|
-
"<%= config.bin %> <%= command.id %> -t v4.3.0",
|
|
2389
|
-
"<%= config.bin %> <%= command.id %> --dry-run",
|
|
2390
|
-
"<%= config.bin %> <%= command.id %> --yes"
|
|
2391
|
-
],
|
|
2392
|
-
"flags": {
|
|
2393
|
-
"tag": {
|
|
2394
|
-
"char": "t",
|
|
2395
|
-
"description": "Release tag to install (e.g. v4.3.0). If omitted, shows a version picker.",
|
|
2396
|
-
"name": "tag",
|
|
2397
|
-
"hasDynamicHelp": false,
|
|
2398
|
-
"multiple": false,
|
|
2399
|
-
"type": "option"
|
|
2400
|
-
},
|
|
2401
|
-
"dir": {
|
|
2402
|
-
"description": "Target directory for the installation",
|
|
2403
|
-
"name": "dir",
|
|
2404
|
-
"default": ".",
|
|
2405
|
-
"hasDynamicHelp": false,
|
|
2406
|
-
"multiple": false,
|
|
2407
|
-
"type": "option"
|
|
2408
|
-
},
|
|
2409
|
-
"config": {
|
|
2410
|
-
"char": "c",
|
|
2411
|
-
"description": "Path to JSON config file with install settings (database, auth, ports, etc.)",
|
|
2412
|
-
"name": "config",
|
|
2413
|
-
"hasDynamicHelp": false,
|
|
2414
|
-
"multiple": false,
|
|
2415
|
-
"type": "option"
|
|
2416
|
-
},
|
|
2417
|
-
"legacy": {
|
|
2418
|
-
"description": "Use the legacy interactive installer (ZIP-only distribution)",
|
|
2419
|
-
"hidden": true,
|
|
2420
|
-
"name": "legacy",
|
|
2421
|
-
"allowNo": false,
|
|
2422
|
-
"type": "boolean"
|
|
2423
|
-
},
|
|
2424
|
-
"dry-run": {
|
|
2425
|
-
"description": "Show the install plan without executing it",
|
|
2426
|
-
"name": "dry-run",
|
|
2427
|
-
"allowNo": false,
|
|
2428
|
-
"type": "boolean"
|
|
2429
|
-
},
|
|
2430
|
-
"yes": {
|
|
2431
|
-
"char": "y",
|
|
2432
|
-
"description": "Non-interactive mode: auto-select latest version and accept defaults",
|
|
2433
|
-
"name": "yes",
|
|
2434
|
-
"allowNo": false,
|
|
2435
|
-
"type": "boolean"
|
|
2436
|
-
},
|
|
2437
|
-
"verbose": {
|
|
2438
|
-
"char": "v",
|
|
2439
|
-
"description": "Show detailed output",
|
|
2440
|
-
"name": "verbose",
|
|
2441
|
-
"allowNo": false,
|
|
2442
|
-
"type": "boolean"
|
|
2443
|
-
},
|
|
2444
|
-
"skip-db": {
|
|
2445
|
-
"description": "Skip database provisioning phases",
|
|
2446
|
-
"name": "skip-db",
|
|
2447
|
-
"allowNo": false,
|
|
2448
|
-
"type": "boolean"
|
|
2449
|
-
},
|
|
2450
|
-
"skip-start": {
|
|
2451
|
-
"description": "Skip service startup and smoke tests",
|
|
2452
|
-
"name": "skip-start",
|
|
2453
|
-
"allowNo": false,
|
|
2454
|
-
"type": "boolean"
|
|
2455
|
-
},
|
|
2456
|
-
"no-resume": {
|
|
2457
|
-
"description": "Ignore any existing checkpoint and start fresh",
|
|
2458
|
-
"name": "no-resume",
|
|
2459
|
-
"allowNo": false,
|
|
2460
|
-
"type": "boolean"
|
|
2461
|
-
},
|
|
2462
|
-
"fast": {
|
|
2463
|
-
"description": "Fast mode: skip smoke test and optimize post-codegen steps. Re-run without --fast if you encounter issues.",
|
|
2464
|
-
"name": "fast",
|
|
2465
|
-
"allowNo": false,
|
|
2466
|
-
"type": "boolean"
|
|
2467
|
-
},
|
|
2468
|
-
"overwrite-config": {
|
|
2469
|
-
"description": "Overwrite existing config files (.env, mj.config.cjs, environment.ts) instead of preserving them",
|
|
2470
|
-
"name": "overwrite-config",
|
|
2471
|
-
"allowNo": false,
|
|
2472
|
-
"type": "boolean"
|
|
2473
|
-
},
|
|
2474
|
-
"monorepo": {
|
|
2475
|
-
"description": "Install the full MemberJunction source repository instead of the lightweight distribution. Use this for MJ framework development.",
|
|
2476
|
-
"name": "monorepo",
|
|
2477
|
-
"allowNo": false,
|
|
2478
|
-
"type": "boolean"
|
|
2479
|
-
},
|
|
2480
|
-
"no-claude-pack": {
|
|
2481
|
-
"description": "Exclude the Claude Code pack (CLAUDE.md + .claude/ tree) from the scaffold. By default the pack ships with the install so opening Claude Code in your new MJ project gives you the curated MJ-aware experience immediately.",
|
|
2482
|
-
"name": "no-claude-pack",
|
|
2483
|
-
"allowNo": false,
|
|
2484
|
-
"type": "boolean"
|
|
2485
|
-
}
|
|
2486
|
-
},
|
|
2487
|
-
"hasDynamicHelp": false,
|
|
2488
|
-
"hiddenAliases": [],
|
|
2489
|
-
"id": "install",
|
|
2490
|
-
"pluginAlias": "@memberjunction/cli",
|
|
2491
|
-
"pluginName": "@memberjunction/cli",
|
|
2492
|
-
"pluginType": "core",
|
|
2493
|
-
"strict": true,
|
|
2494
|
-
"enableJsonFlag": false,
|
|
2495
|
-
"isESM": true,
|
|
2496
|
-
"relativePath": [
|
|
2497
|
-
"dist",
|
|
2498
|
-
"commands",
|
|
2499
|
-
"install",
|
|
2500
|
-
"index.js"
|
|
2501
|
-
]
|
|
2502
|
-
},
|
|
2503
2503
|
"plugin:add": {
|
|
2504
2504
|
"aliases": [],
|
|
2505
2505
|
"args": {
|
|
@@ -5466,5 +5466,5 @@
|
|
|
5466
5466
|
]
|
|
5467
5467
|
}
|
|
5468
5468
|
},
|
|
5469
|
-
"version": "5.
|
|
5469
|
+
"version": "5.46.0"
|
|
5470
5470
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.46.0",
|
|
5
5
|
"description": "MemberJunction command line tools",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"oclif"
|
|
@@ -55,25 +55,25 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@inquirer/prompts": "^8.2.0",
|
|
58
|
-
"@memberjunction/ai-cli": "5.
|
|
59
|
-
"@memberjunction/cli-core": "5.
|
|
60
|
-
"@memberjunction/codegen-lib": "5.
|
|
61
|
-
"@memberjunction/config": "5.
|
|
62
|
-
"@memberjunction/core": "5.
|
|
63
|
-
"@memberjunction/generic-database-provider": "5.
|
|
64
|
-
"@memberjunction/installer": "5.
|
|
65
|
-
"@memberjunction/db-auto-doc": "5.
|
|
66
|
-
"@memberjunction/metadata-sync": "5.
|
|
67
|
-
"@memberjunction/open-app-engine": "5.
|
|
68
|
-
"@memberjunction/query-gen": "5.
|
|
69
|
-
"@memberjunction/server-bootstrap-lite": "5.
|
|
58
|
+
"@memberjunction/ai-cli": "5.46.0",
|
|
59
|
+
"@memberjunction/cli-core": "5.46.0",
|
|
60
|
+
"@memberjunction/codegen-lib": "5.46.0",
|
|
61
|
+
"@memberjunction/config": "5.46.0",
|
|
62
|
+
"@memberjunction/core": "5.46.0",
|
|
63
|
+
"@memberjunction/generic-database-provider": "5.46.0",
|
|
64
|
+
"@memberjunction/installer": "5.46.0",
|
|
65
|
+
"@memberjunction/db-auto-doc": "5.46.0",
|
|
66
|
+
"@memberjunction/metadata-sync": "5.46.0",
|
|
67
|
+
"@memberjunction/open-app-engine": "5.46.0",
|
|
68
|
+
"@memberjunction/query-gen": "5.46.0",
|
|
69
|
+
"@memberjunction/server-bootstrap-lite": "5.46.0",
|
|
70
70
|
"@memberjunction/skyway-core": "^0.6.2",
|
|
71
71
|
"@memberjunction/skyway-postgres": "^0.6.2",
|
|
72
72
|
"@memberjunction/skyway-sqlserver": "^0.6.2",
|
|
73
|
-
"@memberjunction/sql-converter": "5.
|
|
74
|
-
"@memberjunction/sqlglot-ts": "5.
|
|
75
|
-
"@memberjunction/sqlserver-dataprovider": "5.
|
|
76
|
-
"@memberjunction/testing-cli": "5.
|
|
73
|
+
"@memberjunction/sql-converter": "5.46.0",
|
|
74
|
+
"@memberjunction/sqlglot-ts": "5.46.0",
|
|
75
|
+
"@memberjunction/sqlserver-dataprovider": "5.46.0",
|
|
76
|
+
"@memberjunction/testing-cli": "5.46.0",
|
|
77
77
|
"@oclif/core": "^3.27.0",
|
|
78
78
|
"@oclif/plugin-help": "^6.2.37",
|
|
79
79
|
"@oclif/plugin-version": "^2.2.36",
|