stacks 0.52.2 → 0.52.3
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/core/actions/package.json +1 -1
- package/core/actions/src/bump.ts +1 -1
- package/core/actions/src/helpers/utils.ts +0 -2
- package/core/ai/package.json +1 -1
- package/core/alias/package.json +1 -1
- package/core/analytics/package.json +1 -1
- package/core/arrays/package.json +1 -1
- package/core/auth/package.json +1 -1
- package/core/buddy/package.json +1 -1
- package/core/buddy/src/commands/changelog.ts +4 -2
- package/core/build/package.json +1 -1
- package/core/cache/package.json +1 -1
- package/core/chat/package.json +1 -1
- package/core/cli/package.json +1 -1
- package/core/cli/src/helpers.ts +12 -5
- package/core/cloud/package.json +1 -1
- package/core/collections/package.json +1 -1
- package/core/config/package.json +1 -1
- package/core/database/package.json +1 -1
- package/core/datetime/package.json +1 -1
- package/core/desktop/package.json +1 -1
- package/core/development/package.json +1 -1
- package/core/docs/package.json +1 -1
- package/core/domains/package.json +1 -1
- package/core/email/package.json +1 -1
- package/core/error-handling/package.json +1 -1
- package/core/events/package.json +1 -1
- package/core/faker/package.json +1 -1
- package/core/git/package.json +1 -1
- package/core/health/package.json +1 -1
- package/core/lint/package.json +1 -1
- package/core/logging/package.json +1 -1
- package/core/modules/package.json +1 -1
- package/core/notifications/package.json +1 -1
- package/core/objects/package.json +1 -1
- package/core/orm/package.json +1 -1
- package/core/pages/package.json +1 -1
- package/core/path/package.json +1 -1
- package/core/payments/package.json +1 -1
- package/core/push/package.json +1 -1
- package/core/query-builder/package.json +1 -1
- package/core/queue/package.json +1 -1
- package/core/realtime/package.json +1 -1
- package/core/router/package.json +1 -1
- package/core/scheduler/package.json +1 -1
- package/core/search-engine/package.json +1 -1
- package/core/security/package.json +1 -1
- package/core/server/package.json +1 -1
- package/core/signals/package.json +1 -1
- package/core/slug/package.json +1 -1
- package/core/sms/package.json +1 -1
- package/core/storage/package.json +1 -1
- package/core/strings/package.json +1 -1
- package/core/testing/package.json +1 -1
- package/core/tinker/package.json +1 -1
- package/core/types/package.json +1 -1
- package/core/types/src/cli.ts +18 -1
- package/core/ui/package.json +1 -1
- package/core/utils/package.json +1 -1
- package/core/validation/package.json +1 -1
- package/package.json +91 -91
package/core/actions/src/bump.ts
CHANGED
|
@@ -2,6 +2,6 @@ import { runCommand } from '@stacksjs/cli'
|
|
|
2
2
|
import { frameworkPath } from '@stacksjs/path'
|
|
3
3
|
|
|
4
4
|
await runCommand(
|
|
5
|
-
'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "
|
|
5
|
+
'npx bumpp ./package.json ./buddy/package.json ./core/**/package.json ./vscode/package.json --execute "buddy changelog --quiet" --all',
|
|
6
6
|
{ verbose: true, cwd: frameworkPath(), shell: true },
|
|
7
7
|
)
|
|
@@ -37,8 +37,6 @@ export async function runAction(action: string, options?: ActionOptions): Promis
|
|
|
37
37
|
// we need to parse options here because they need to bw passed to the action
|
|
38
38
|
const opts = parseOptions(options)
|
|
39
39
|
const cmd = `npx tsx ${actionsPath(`${action}.ts ${opts}`)}`
|
|
40
|
-
// eslint-disable-next-line no-console
|
|
41
|
-
console.log('cmd', cmd)
|
|
42
40
|
|
|
43
41
|
if (options?.verbose)
|
|
44
42
|
log.debug('running command:', italic(cmd))
|
package/core/ai/package.json
CHANGED
package/core/alias/package.json
CHANGED
package/core/arrays/package.json
CHANGED
package/core/auth/package.json
CHANGED
package/core/buddy/package.json
CHANGED
|
@@ -6,22 +6,24 @@ import { Action, ExitCode } from '@stacksjs/types'
|
|
|
6
6
|
async function changelog(buddy: CLI) {
|
|
7
7
|
const descriptions = {
|
|
8
8
|
changelog: 'Create a CHANGELOG.md file',
|
|
9
|
+
quiet: 'Minimal output',
|
|
9
10
|
verbose: 'Enable verbose output',
|
|
10
11
|
}
|
|
11
12
|
|
|
12
13
|
buddy
|
|
13
14
|
.command('changelog', descriptions.changelog)
|
|
15
|
+
.option('--quiet', descriptions.quiet, { default: false })
|
|
14
16
|
.option('--verbose', descriptions.verbose, { default: false })
|
|
15
17
|
.action(async (options: FreshOptions) => {
|
|
16
18
|
const perf = await intro('buddy changelog')
|
|
17
19
|
const result = await runAction(Action.Changelog, options)
|
|
18
20
|
|
|
19
21
|
if (result.isErr()) {
|
|
20
|
-
outro('While running the changelog command, there was an issue', { startTime: perf, useSeconds: true, isError: true }, result.error as Error)
|
|
22
|
+
outro('While running the changelog command, there was an issue', { ...options, startTime: perf, useSeconds: true, isError: true }, result.error as Error)
|
|
21
23
|
process.exit()
|
|
22
24
|
}
|
|
23
25
|
|
|
24
|
-
outro('Generated the CHANGELOG.md file
|
|
26
|
+
outro('Generated the CHANGELOG.md file', { ...options, startTime: perf, useSeconds: true, type: 'info' })
|
|
25
27
|
process.exit(ExitCode.Success)
|
|
26
28
|
})
|
|
27
29
|
}
|
package/core/build/package.json
CHANGED
package/core/cache/package.json
CHANGED
package/core/chat/package.json
CHANGED
package/core/cli/package.json
CHANGED
package/core/cli/src/helpers.ts
CHANGED
|
@@ -9,12 +9,16 @@ import { bgCyan, bold, cyan, dim, green, italic, red } from './utilities'
|
|
|
9
9
|
*/
|
|
10
10
|
export async function intro(command: string, options?: IntroOptions) {
|
|
11
11
|
const version = await frameworkVersion()
|
|
12
|
-
console.log()
|
|
13
|
-
console.log(cyan(bold('Stacks CLI')) + dim(` v${version}`))
|
|
14
|
-
console.log()
|
|
15
|
-
log.info(`Preparing to run the ${bgCyan(italic(bold(` ${command} `)))} command.`)
|
|
16
12
|
|
|
17
|
-
if (options?.
|
|
13
|
+
if (options?.quiet === false) {
|
|
14
|
+
console.log()
|
|
15
|
+
console.log(cyan(bold('Stacks CLI')) + dim(` v${version}`))
|
|
16
|
+
console.log()
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
log.info(`Preparing to run the ${bgCyan(italic(bold(` ${command} `)))} command`)
|
|
20
|
+
|
|
21
|
+
if (options?.showPerformance === false || options?.quiet)
|
|
18
22
|
return
|
|
19
23
|
|
|
20
24
|
return performance.now()
|
|
@@ -43,6 +47,9 @@ export function outro(text: string, options: OutroOptions, error?: Error | strin
|
|
|
43
47
|
time = Math.round(time * 100) / 100 // https://stackoverflow.com/a/11832950/7811162
|
|
44
48
|
}
|
|
45
49
|
|
|
50
|
+
if (options.quiet === false)
|
|
51
|
+
return
|
|
52
|
+
|
|
46
53
|
if (options.isError)
|
|
47
54
|
log.error(red(`in ${time}${options.useSeconds ? 's' : 'ms'}`))
|
|
48
55
|
else
|
package/core/cloud/package.json
CHANGED
package/core/config/package.json
CHANGED
package/core/docs/package.json
CHANGED
package/core/email/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/email",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.52.
|
|
4
|
+
"version": "0.52.3",
|
|
5
5
|
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The Stacks Email integration. Painlessly create & manage your inboxes, templates, and send emails.",
|
|
7
7
|
"author": "Chris Breuer",
|
package/core/events/package.json
CHANGED
package/core/faker/package.json
CHANGED
package/core/git/package.json
CHANGED
package/core/health/package.json
CHANGED
package/core/lint/package.json
CHANGED
package/core/orm/package.json
CHANGED
package/core/pages/package.json
CHANGED
package/core/path/package.json
CHANGED
package/core/push/package.json
CHANGED
package/core/queue/package.json
CHANGED
package/core/router/package.json
CHANGED
package/core/server/package.json
CHANGED
package/core/slug/package.json
CHANGED
package/core/sms/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/sms",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.52.
|
|
4
|
+
"version": "0.52.3",
|
|
5
5
|
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The Stacks SMS integration. Painlessly create & manage your inboxes, templates, and send sms.",
|
|
7
7
|
"author": "Chris Breuer",
|
package/core/tinker/package.json
CHANGED
package/core/types/package.json
CHANGED
package/core/types/src/cli.ts
CHANGED
|
@@ -9,11 +9,12 @@ import type { Err, Ok } from './errors'
|
|
|
9
9
|
export type CommandReturnValue = ExecaReturnValue<string>
|
|
10
10
|
export type CommandResult = Ok<ExecaReturnValue<string>, Error | void> | Err<ExecaReturnValue<string>, Error | string | void>
|
|
11
11
|
|
|
12
|
-
export interface OutroOptions {
|
|
12
|
+
export interface OutroOptions extends CliOptions {
|
|
13
13
|
type?: 'success' | 'error' | 'warning' | 'info'
|
|
14
14
|
startTime?: number
|
|
15
15
|
useSeconds?: boolean
|
|
16
16
|
isError?: boolean
|
|
17
|
+
quiet?: boolean
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
export interface IntroOptions {
|
|
@@ -21,6 +22,11 @@ export interface IntroOptions {
|
|
|
21
22
|
* @default true
|
|
22
23
|
*/
|
|
23
24
|
showPerformance?: boolean
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @default false
|
|
28
|
+
*/
|
|
29
|
+
quiet: boolean
|
|
24
30
|
}
|
|
25
31
|
|
|
26
32
|
type SpinnerOptions = Ora
|
|
@@ -40,6 +46,17 @@ export interface UserCliOptions {
|
|
|
40
46
|
* The options to pass to the CLI.
|
|
41
47
|
*/
|
|
42
48
|
export interface CliOptions {
|
|
49
|
+
/**
|
|
50
|
+
* **Quiet Output**
|
|
51
|
+
*
|
|
52
|
+
* When your application is in "quiet"-mode, a different level of information
|
|
53
|
+
* like useful outputs for debugging reasons, will be shown.
|
|
54
|
+
* When disabled, it defaults to the "normal experience."
|
|
55
|
+
*
|
|
56
|
+
* @default false
|
|
57
|
+
*/
|
|
58
|
+
quiet?: boolean
|
|
59
|
+
|
|
43
60
|
/**
|
|
44
61
|
* **Verbose Output**
|
|
45
62
|
*
|
package/core/ui/package.json
CHANGED
package/core/utils/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.52.
|
|
4
|
+
"version": "0.52.3",
|
|
5
5
|
"packageManager": "pnpm@8.5.1",
|
|
6
6
|
"description": "The Stacks framework.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -62,98 +62,98 @@
|
|
|
62
62
|
],
|
|
63
63
|
"web-types": "./web-types.json",
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"@stacksjs/actions": "0.52.
|
|
66
|
-
"@stacksjs/ai": "0.52.
|
|
67
|
-
"@stacksjs/alias": "0.52.
|
|
68
|
-
"@stacksjs/arrays": "0.52.
|
|
69
|
-
"@stacksjs/auth": "0.52.
|
|
70
|
-
"@stacksjs/buddy": "0.52.
|
|
71
|
-
"@stacksjs/build": "0.52.
|
|
72
|
-
"@stacksjs/cache": "0.52.
|
|
73
|
-
"@stacksjs/cli": "0.52.
|
|
74
|
-
"@stacksjs/cloud": "0.52.
|
|
75
|
-
"@stacksjs/collections": "0.52.
|
|
76
|
-
"@stacksjs/config": "0.52.
|
|
77
|
-
"@stacksjs/database": "0.52.
|
|
78
|
-
"@stacksjs/desktop": "0.52.
|
|
79
|
-
"@stacksjs/development": "0.52.
|
|
80
|
-
"@stacksjs/docs": "0.52.
|
|
81
|
-
"@stacksjs/domains": "0.52.
|
|
82
|
-
"@stacksjs/email": "0.52.
|
|
83
|
-
"@stacksjs/error-handling": "0.52.
|
|
84
|
-
"@stacksjs/events": "0.52.
|
|
85
|
-
"@stacksjs/faker": "0.52.
|
|
86
|
-
"@stacksjs/git": "0.52.
|
|
87
|
-
"@stacksjs/health": "0.52.
|
|
88
|
-
"@stacksjs/lint": "0.52.
|
|
89
|
-
"@stacksjs/logging": "0.52.
|
|
90
|
-
"@stacksjs/modules": "0.52.
|
|
91
|
-
"@stacksjs/notifications": "0.52.
|
|
92
|
-
"@stacksjs/objects": "0.52.
|
|
93
|
-
"@stacksjs/orm": "0.52.
|
|
94
|
-
"@stacksjs/pages": "0.52.
|
|
95
|
-
"@stacksjs/path": "0.52.
|
|
96
|
-
"@stacksjs/payments": "0.52.
|
|
97
|
-
"@stacksjs/realtime": "0.52.
|
|
98
|
-
"@stacksjs/router": "0.52.
|
|
99
|
-
"@stacksjs/search-engine": "0.52.
|
|
100
|
-
"@stacksjs/security": "0.52.
|
|
101
|
-
"@stacksjs/server": "0.52.
|
|
102
|
-
"@stacksjs/signals": "0.52.
|
|
103
|
-
"@stacksjs/storage": "0.52.
|
|
104
|
-
"@stacksjs/strings": "0.52.
|
|
105
|
-
"@stacksjs/testing": "0.52.
|
|
106
|
-
"@stacksjs/types": "0.52.
|
|
107
|
-
"@stacksjs/ui": "0.52.
|
|
108
|
-
"@stacksjs/utils": "0.52.
|
|
109
|
-
"@stacksjs/validation": "0.52.
|
|
65
|
+
"@stacksjs/actions": "0.52.3",
|
|
66
|
+
"@stacksjs/ai": "0.52.3",
|
|
67
|
+
"@stacksjs/alias": "0.52.3",
|
|
68
|
+
"@stacksjs/arrays": "0.52.3",
|
|
69
|
+
"@stacksjs/auth": "0.52.3",
|
|
70
|
+
"@stacksjs/buddy": "0.52.3",
|
|
71
|
+
"@stacksjs/build": "0.52.3",
|
|
72
|
+
"@stacksjs/cache": "0.52.3",
|
|
73
|
+
"@stacksjs/cli": "0.52.3",
|
|
74
|
+
"@stacksjs/cloud": "0.52.3",
|
|
75
|
+
"@stacksjs/collections": "0.52.3",
|
|
76
|
+
"@stacksjs/config": "0.52.3",
|
|
77
|
+
"@stacksjs/database": "0.52.3",
|
|
78
|
+
"@stacksjs/desktop": "0.52.3",
|
|
79
|
+
"@stacksjs/development": "0.52.3",
|
|
80
|
+
"@stacksjs/docs": "0.52.3",
|
|
81
|
+
"@stacksjs/domains": "0.52.3",
|
|
82
|
+
"@stacksjs/email": "0.52.3",
|
|
83
|
+
"@stacksjs/error-handling": "0.52.3",
|
|
84
|
+
"@stacksjs/events": "0.52.3",
|
|
85
|
+
"@stacksjs/faker": "0.52.3",
|
|
86
|
+
"@stacksjs/git": "0.52.3",
|
|
87
|
+
"@stacksjs/health": "0.52.3",
|
|
88
|
+
"@stacksjs/lint": "0.52.3",
|
|
89
|
+
"@stacksjs/logging": "0.52.3",
|
|
90
|
+
"@stacksjs/modules": "0.52.3",
|
|
91
|
+
"@stacksjs/notifications": "0.52.3",
|
|
92
|
+
"@stacksjs/objects": "0.52.3",
|
|
93
|
+
"@stacksjs/orm": "0.52.3",
|
|
94
|
+
"@stacksjs/pages": "0.52.3",
|
|
95
|
+
"@stacksjs/path": "0.52.3",
|
|
96
|
+
"@stacksjs/payments": "0.52.3",
|
|
97
|
+
"@stacksjs/realtime": "0.52.3",
|
|
98
|
+
"@stacksjs/router": "0.52.3",
|
|
99
|
+
"@stacksjs/search-engine": "0.52.3",
|
|
100
|
+
"@stacksjs/security": "0.52.3",
|
|
101
|
+
"@stacksjs/server": "0.52.3",
|
|
102
|
+
"@stacksjs/signals": "0.52.3",
|
|
103
|
+
"@stacksjs/storage": "0.52.3",
|
|
104
|
+
"@stacksjs/strings": "0.52.3",
|
|
105
|
+
"@stacksjs/testing": "0.52.3",
|
|
106
|
+
"@stacksjs/types": "0.52.3",
|
|
107
|
+
"@stacksjs/ui": "0.52.3",
|
|
108
|
+
"@stacksjs/utils": "0.52.3",
|
|
109
|
+
"@stacksjs/validation": "0.52.3"
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
|
-
"@stacksjs/actions": "0.52.
|
|
113
|
-
"@stacksjs/ai": "0.52.
|
|
114
|
-
"@stacksjs/alias": "0.52.
|
|
115
|
-
"@stacksjs/arrays": "0.52.
|
|
116
|
-
"@stacksjs/auth": "0.52.
|
|
117
|
-
"@stacksjs/buddy": "0.52.
|
|
118
|
-
"@stacksjs/build": "0.52.
|
|
119
|
-
"@stacksjs/cache": "0.52.
|
|
120
|
-
"@stacksjs/cli": "0.52.
|
|
121
|
-
"@stacksjs/cloud": "0.52.
|
|
122
|
-
"@stacksjs/collections": "0.52.
|
|
123
|
-
"@stacksjs/config": "0.52.
|
|
124
|
-
"@stacksjs/database": "0.52.
|
|
125
|
-
"@stacksjs/desktop": "0.52.
|
|
126
|
-
"@stacksjs/development": "0.52.
|
|
127
|
-
"@stacksjs/docs": "0.52.
|
|
128
|
-
"@stacksjs/domains": "0.52.
|
|
129
|
-
"@stacksjs/email": "0.52.
|
|
130
|
-
"@stacksjs/error-handling": "0.52.
|
|
131
|
-
"@stacksjs/events": "0.52.
|
|
132
|
-
"@stacksjs/faker": "0.52.
|
|
133
|
-
"@stacksjs/git": "0.52.
|
|
134
|
-
"@stacksjs/health": "0.52.
|
|
135
|
-
"@stacksjs/lint": "0.52.
|
|
136
|
-
"@stacksjs/logging": "0.52.
|
|
137
|
-
"@stacksjs/modules": "0.52.
|
|
138
|
-
"@stacksjs/notifications": "0.52.
|
|
139
|
-
"@stacksjs/objects": "0.52.
|
|
140
|
-
"@stacksjs/orm": "0.52.
|
|
141
|
-
"@stacksjs/pages": "0.52.
|
|
142
|
-
"@stacksjs/path": "0.52.
|
|
143
|
-
"@stacksjs/payments": "0.52.
|
|
144
|
-
"@stacksjs/realtime": "0.52.
|
|
145
|
-
"@stacksjs/router": "0.52.
|
|
146
|
-
"@stacksjs/search-engine": "0.52.
|
|
147
|
-
"@stacksjs/security": "0.52.
|
|
148
|
-
"@stacksjs/server": "0.52.
|
|
149
|
-
"@stacksjs/signals": "0.52.
|
|
150
|
-
"@stacksjs/storage": "0.52.
|
|
151
|
-
"@stacksjs/strings": "0.52.
|
|
152
|
-
"@stacksjs/testing": "0.52.
|
|
153
|
-
"@stacksjs/types": "0.52.
|
|
154
|
-
"@stacksjs/ui": "0.52.
|
|
155
|
-
"@stacksjs/utils": "0.52.
|
|
156
|
-
"@stacksjs/validation": "0.52.
|
|
112
|
+
"@stacksjs/actions": "0.52.3",
|
|
113
|
+
"@stacksjs/ai": "0.52.3",
|
|
114
|
+
"@stacksjs/alias": "0.52.3",
|
|
115
|
+
"@stacksjs/arrays": "0.52.3",
|
|
116
|
+
"@stacksjs/auth": "0.52.3",
|
|
117
|
+
"@stacksjs/buddy": "0.52.3",
|
|
118
|
+
"@stacksjs/build": "0.52.3",
|
|
119
|
+
"@stacksjs/cache": "0.52.3",
|
|
120
|
+
"@stacksjs/cli": "0.52.3",
|
|
121
|
+
"@stacksjs/cloud": "0.52.3",
|
|
122
|
+
"@stacksjs/collections": "0.52.3",
|
|
123
|
+
"@stacksjs/config": "0.52.3",
|
|
124
|
+
"@stacksjs/database": "0.52.3",
|
|
125
|
+
"@stacksjs/desktop": "0.52.3",
|
|
126
|
+
"@stacksjs/development": "0.52.3",
|
|
127
|
+
"@stacksjs/docs": "0.52.3",
|
|
128
|
+
"@stacksjs/domains": "0.52.3",
|
|
129
|
+
"@stacksjs/email": "0.52.3",
|
|
130
|
+
"@stacksjs/error-handling": "0.52.3",
|
|
131
|
+
"@stacksjs/events": "0.52.3",
|
|
132
|
+
"@stacksjs/faker": "0.52.3",
|
|
133
|
+
"@stacksjs/git": "0.52.3",
|
|
134
|
+
"@stacksjs/health": "0.52.3",
|
|
135
|
+
"@stacksjs/lint": "0.52.3",
|
|
136
|
+
"@stacksjs/logging": "0.52.3",
|
|
137
|
+
"@stacksjs/modules": "0.52.3",
|
|
138
|
+
"@stacksjs/notifications": "0.52.3",
|
|
139
|
+
"@stacksjs/objects": "0.52.3",
|
|
140
|
+
"@stacksjs/orm": "0.52.3",
|
|
141
|
+
"@stacksjs/pages": "0.52.3",
|
|
142
|
+
"@stacksjs/path": "0.52.3",
|
|
143
|
+
"@stacksjs/payments": "0.52.3",
|
|
144
|
+
"@stacksjs/realtime": "0.52.3",
|
|
145
|
+
"@stacksjs/router": "0.52.3",
|
|
146
|
+
"@stacksjs/search-engine": "0.52.3",
|
|
147
|
+
"@stacksjs/security": "0.52.3",
|
|
148
|
+
"@stacksjs/server": "0.52.3",
|
|
149
|
+
"@stacksjs/signals": "0.52.3",
|
|
150
|
+
"@stacksjs/storage": "0.52.3",
|
|
151
|
+
"@stacksjs/strings": "0.52.3",
|
|
152
|
+
"@stacksjs/testing": "0.52.3",
|
|
153
|
+
"@stacksjs/types": "0.52.3",
|
|
154
|
+
"@stacksjs/ui": "0.52.3",
|
|
155
|
+
"@stacksjs/utils": "0.52.3",
|
|
156
|
+
"@stacksjs/validation": "0.52.3"
|
|
157
157
|
},
|
|
158
158
|
"scripts": {
|
|
159
159
|
"buddy": "tsx ./core/buddy/src/cli.ts",
|