stacks 0.52.8 → 0.52.9
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/helpers/package-json.ts +6 -4
- package/core/actions/src/make.ts +19 -18
- package/core/actions/src/release.ts +3 -5
- 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/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/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/path/src/index.ts +2 -11
- 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/search-engine/src/index.ts +2 -2
- 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 +3 -3
- package/core/ui/package.json +1 -1
- package/core/utils/package.json +1 -1
- package/core/utils/src/helpers.ts +1 -1
- package/core/validation/package.json +1 -1
- package/package.json +91 -91
|
@@ -3,7 +3,9 @@ import { writeTextFile } from '@stacksjs/storage'
|
|
|
3
3
|
import { packageJsonPath } from '@stacksjs/path'
|
|
4
4
|
import { library, packageManager } from '@stacksjs/config'
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
type PackageJsonType = 'vue-components' | 'web-components' | 'functions'
|
|
7
|
+
|
|
8
|
+
export async function generatePackageJson(type: PackageJsonType) {
|
|
7
9
|
let name, description, directory, keywords, config, prettyName
|
|
8
10
|
|
|
9
11
|
if (type === 'vue-components') {
|
|
@@ -39,7 +41,7 @@ export async function generatePackageJson(type: 'vue-components' | 'web-componen
|
|
|
39
41
|
"name": "${name}",
|
|
40
42
|
"type": "module",
|
|
41
43
|
"version": "",
|
|
42
|
-
"packageManager": "${packageManager}",
|
|
44
|
+
"packageManager": "${await packageManager()}",
|
|
43
45
|
"description": "${description}",
|
|
44
46
|
"author": "${library.author}",
|
|
45
47
|
"license": "MIT",
|
|
@@ -86,9 +88,9 @@ export async function generatePackageJson(type: 'vue-components' | 'web-componen
|
|
|
86
88
|
else if (type === 'functions')
|
|
87
89
|
prettyName = 'Function Library'
|
|
88
90
|
|
|
89
|
-
log.success(`Created the ${prettyName} package.json file
|
|
91
|
+
log.success(`Created the ${prettyName} package.json file`)
|
|
90
92
|
}
|
|
91
93
|
catch (err) {
|
|
92
|
-
log.error(`There was an error creating the ${prettyName} package.json
|
|
94
|
+
log.error(`There was an error creating the ${prettyName} package.json`, err)
|
|
93
95
|
}
|
|
94
96
|
}
|
package/core/actions/src/make.ts
CHANGED
|
@@ -19,8 +19,8 @@ export async function invoke(options: MakeOptions) {
|
|
|
19
19
|
if (options.language)
|
|
20
20
|
await language(options)
|
|
21
21
|
|
|
22
|
-
if (options.migration)
|
|
23
|
-
|
|
22
|
+
// if (options.migration)
|
|
23
|
+
// await migration(options)
|
|
24
24
|
|
|
25
25
|
if (options.notification)
|
|
26
26
|
await notification(options)
|
|
@@ -46,10 +46,10 @@ export async function component(options: MakeOptions) {
|
|
|
46
46
|
const name = options.name
|
|
47
47
|
log.info('Creating your component...')
|
|
48
48
|
await createComponent(options)
|
|
49
|
-
log.success(`Created the ${italic(name)} component
|
|
49
|
+
log.success(`Created the ${italic(name)} component`)
|
|
50
50
|
}
|
|
51
51
|
catch (error) {
|
|
52
|
-
log.error('There was an error creating your component
|
|
52
|
+
log.error('There was an error creating your component', error)
|
|
53
53
|
process.exit()
|
|
54
54
|
}
|
|
55
55
|
}
|
|
@@ -77,10 +77,10 @@ export async function database(options: MakeOptions) {
|
|
|
77
77
|
const name = options.name
|
|
78
78
|
log.info(`Creating your ${italic(name)} database...`)
|
|
79
79
|
await createDatabase(options)
|
|
80
|
-
log.success(`Created the ${italic(name)} database
|
|
80
|
+
log.success(`Created the ${italic(name)} database`)
|
|
81
81
|
}
|
|
82
82
|
catch (error) {
|
|
83
|
-
log.error('There was an error creating your database
|
|
83
|
+
log.error('There was an error creating your database', error)
|
|
84
84
|
process.exit()
|
|
85
85
|
}
|
|
86
86
|
}
|
|
@@ -95,10 +95,10 @@ export async function factory(options: MakeOptions) {
|
|
|
95
95
|
const name = options.name
|
|
96
96
|
log.info(`Creating your ${italic(name)} factory...`)
|
|
97
97
|
await createDatabase(options)
|
|
98
|
-
log.success(`Created the ${italic(name)} factory
|
|
98
|
+
log.success(`Created the ${italic(name)} factory`)
|
|
99
99
|
}
|
|
100
100
|
catch (error) {
|
|
101
|
-
log.error('There was an error creating your factory
|
|
101
|
+
log.error('There was an error creating your factory', error)
|
|
102
102
|
process.exit()
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -113,10 +113,10 @@ export async function notification(options: MakeOptions) {
|
|
|
113
113
|
const name = options.name
|
|
114
114
|
log.info(`Creating your ${italic(name)} notification...`)
|
|
115
115
|
await createNotification(options)
|
|
116
|
-
log.success(`Created the ${italic(name)} notification
|
|
116
|
+
log.success(`Created the ${italic(name)} notification`)
|
|
117
117
|
}
|
|
118
118
|
catch (error) {
|
|
119
|
-
log.error('There was an error creating your notification
|
|
119
|
+
log.error('There was an error creating your notification', error)
|
|
120
120
|
process.exit()
|
|
121
121
|
}
|
|
122
122
|
}
|
|
@@ -126,10 +126,10 @@ export async function page(options: MakeOptions) {
|
|
|
126
126
|
const name = options.name
|
|
127
127
|
log.info('Creating your page...')
|
|
128
128
|
createPage(options)
|
|
129
|
-
log.success(`Created the ${name} page
|
|
129
|
+
log.success(`Created the ${name} page`)
|
|
130
130
|
}
|
|
131
131
|
catch (error) {
|
|
132
|
-
log.error('There was an error creating your page
|
|
132
|
+
log.error('There was an error creating your page', error)
|
|
133
133
|
process.exit()
|
|
134
134
|
}
|
|
135
135
|
}
|
|
@@ -158,10 +158,10 @@ export async function fx(options: MakeOptions) {
|
|
|
158
158
|
const name = options.name
|
|
159
159
|
log.info('Creating your function...')
|
|
160
160
|
await createFunction(options)
|
|
161
|
-
log.success(`Created the ${name} function
|
|
161
|
+
log.success(`Created the ${name} function`)
|
|
162
162
|
}
|
|
163
163
|
catch (error) {
|
|
164
|
-
log.error('There was an error creating your function
|
|
164
|
+
log.error('There was an error creating your function', error)
|
|
165
165
|
process.exit()
|
|
166
166
|
}
|
|
167
167
|
}
|
|
@@ -191,7 +191,7 @@ export async function language(options: MakeOptions) {
|
|
|
191
191
|
const name = options.name
|
|
192
192
|
log.info('Creating your translation file...')
|
|
193
193
|
createLanguage(options)
|
|
194
|
-
log.success(`Created the ${name} translation file
|
|
194
|
+
log.success(`Created the ${name} translation file`)
|
|
195
195
|
}
|
|
196
196
|
catch (error) {
|
|
197
197
|
log.error('There was an error creating your language.', error)
|
|
@@ -220,7 +220,7 @@ export async function stack(options: MakeOptions) {
|
|
|
220
220
|
log.info(`cd ${path} && pnpm install`)
|
|
221
221
|
}
|
|
222
222
|
catch (error) {
|
|
223
|
-
log.error('There was an error creating your stack
|
|
223
|
+
log.error('There was an error creating your stack', error)
|
|
224
224
|
process.exit()
|
|
225
225
|
}
|
|
226
226
|
}
|
|
@@ -263,7 +263,8 @@ function send(): ${importOption} {
|
|
|
263
263
|
|
|
264
264
|
export async function createMigration(options: MakeOptions) {
|
|
265
265
|
const optionName = options.name
|
|
266
|
-
const table = options.tableName
|
|
266
|
+
// const table = options.tableName
|
|
267
|
+
const table = 'dummy-name'
|
|
267
268
|
const name = optionName[0].toUpperCase() + optionName.slice(1)
|
|
268
269
|
const path = frameworkPath(`database/migrations/${name}.ts`)
|
|
269
270
|
|
|
@@ -294,7 +295,7 @@ export async function createModel(options: MakeOptions) {
|
|
|
294
295
|
try {
|
|
295
296
|
await writeTextFile({
|
|
296
297
|
path: `${path}`,
|
|
297
|
-
data: `import { faker } from '../../.stacks/core/faker/src' // stacks/faker or
|
|
298
|
+
data: `import { faker } from '../../.stacks/core/faker/src' // stacks/faker or
|
|
298
299
|
import { validate } from '../../.stacks/core/validation/src' // stacks/validate or @stacksjs/validate
|
|
299
300
|
import type { Model } from '../../.stacks/core/types/src' // stacks/types or @stacksjs/types
|
|
300
301
|
|
|
@@ -3,13 +3,11 @@ import { frameworkPath } from '@stacksjs/path'
|
|
|
3
3
|
import { runActions } from '@stacksjs/actions'
|
|
4
4
|
import { Action } from '@stacksjs/types'
|
|
5
5
|
|
|
6
|
-
// import { log } from '@stacksjs/cli'
|
|
7
|
-
|
|
8
6
|
await runActions([
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
Action.GeneratePackageJsons, // generate the package.json's for each package
|
|
8
|
+
Action.LintFix, // ensure there are no lint errors
|
|
11
9
|
// Action.Test, // run the tests
|
|
12
|
-
Action.Bump, // bump the versions, create the git
|
|
10
|
+
Action.Bump, // bump the versions, create the git tag, generate the changelog, commit & push the changes
|
|
13
11
|
], { verbose: true, cwd: frameworkPath(), shell: true }) // debug mode needs to be enabled to see the output due to the interactive prompts
|
|
14
12
|
|
|
15
13
|
// log.success('Successfully released the Stacks framework')
|
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
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/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.9",
|
|
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/path/src/index.ts
CHANGED
|
@@ -258,19 +258,10 @@ export function paymentsPath(path?: string) {
|
|
|
258
258
|
export function projectPath(filePath = '') {
|
|
259
259
|
let path = process.cwd()
|
|
260
260
|
|
|
261
|
-
//
|
|
262
|
-
|
|
261
|
+
// simple way to determine the project path
|
|
262
|
+
while (path.includes('.stacks'))
|
|
263
263
|
path = resolve(path, '..')
|
|
264
264
|
|
|
265
|
-
if (path.includes('.stacks'))
|
|
266
|
-
path = resolve(path, '..')
|
|
267
|
-
|
|
268
|
-
if (path.includes('.stacks'))
|
|
269
|
-
path = resolve(path, '..')
|
|
270
|
-
|
|
271
|
-
if (!path.includes('.stacks'))
|
|
272
|
-
path = resolve(path, '.')
|
|
273
|
-
|
|
274
265
|
return resolve(path, filePath)
|
|
275
266
|
}
|
|
276
267
|
|
package/core/push/package.json
CHANGED
package/core/queue/package.json
CHANGED
package/core/router/package.json
CHANGED
|
@@ -2,7 +2,7 @@ import { searchEngine } from '@stacksjs/config'
|
|
|
2
2
|
|
|
3
3
|
// import type { Ref } from '@stacksjs/types'
|
|
4
4
|
import type { UiEngine } from '@stacksjs/ui'
|
|
5
|
-
import { client as meilisearch
|
|
5
|
+
import { client as meilisearch } from './drivers/meilisearch'
|
|
6
6
|
import { determineState } from './helpers'
|
|
7
7
|
|
|
8
8
|
const table = (useStorage('table', determineState()).value)
|
|
@@ -64,4 +64,4 @@ export function calculatePagination() {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
// it needs these exports
|
|
67
|
-
// currentPage, filterName, filters, goToNextPage, goToPage, goToPrevPage, hits, index, lastPageNumber, perPage, query, results, search, searchFilters, searchParams, setTotalHits, sort, sorts, totalPages
|
|
67
|
+
// currentPage, filterName, filters, goToNextPage, goToPage, goToPrevPage, hits, index, lastPageNumber, perPage, query, results, search, searchFilters, searchParams, setTotalHits, sort, sorts, totalPages
|
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.9",
|
|
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
|
@@ -275,9 +275,9 @@ export const enum Action {
|
|
|
275
275
|
DevDocs = 'dev/docs', // wip
|
|
276
276
|
Deploy = 'deploy', // wip
|
|
277
277
|
Fresh = 'fresh', // wip
|
|
278
|
-
GeneratePackageJsons = 'generate
|
|
279
|
-
GenerateSettings = 'generate-settings',
|
|
280
|
-
GenerateOnboarding = 'generate-onboarding',
|
|
278
|
+
GeneratePackageJsons = 'generate/package-jsons', // ✅
|
|
279
|
+
GenerateSettings = 'generate-settings', // wip
|
|
280
|
+
GenerateOnboarding = 'generate-onboarding', // wip
|
|
281
281
|
Inspire = 'inspire', // wip
|
|
282
282
|
KeyGenerate = 'key-generate', // wip
|
|
283
283
|
MakeNotification = 'make-notification', // wip
|
package/core/ui/package.json
CHANGED
package/core/utils/package.json
CHANGED
|
@@ -100,7 +100,7 @@ export async function runNpmScript(script: NpmScript, options?: CliOptions): Pro
|
|
|
100
100
|
if (isManifest(manifest) && hasScript(manifest, script)) // simple, yet effective check to see if the script exists
|
|
101
101
|
return await runCommand(`pnpm run ${script}`, options)
|
|
102
102
|
|
|
103
|
-
log.error(`The specified npm script "${script}" does not exist in the package.json file
|
|
103
|
+
log.error(`The specified npm script "${script}" does not exist in the package.json file`)
|
|
104
104
|
process.exit()
|
|
105
105
|
}
|
|
106
106
|
|
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.9",
|
|
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.9",
|
|
66
|
+
"@stacksjs/ai": "0.52.9",
|
|
67
|
+
"@stacksjs/alias": "0.52.9",
|
|
68
|
+
"@stacksjs/arrays": "0.52.9",
|
|
69
|
+
"@stacksjs/auth": "0.52.9",
|
|
70
|
+
"@stacksjs/buddy": "0.52.9",
|
|
71
|
+
"@stacksjs/build": "0.52.9",
|
|
72
|
+
"@stacksjs/cache": "0.52.9",
|
|
73
|
+
"@stacksjs/cli": "0.52.9",
|
|
74
|
+
"@stacksjs/cloud": "0.52.9",
|
|
75
|
+
"@stacksjs/collections": "0.52.9",
|
|
76
|
+
"@stacksjs/config": "0.52.9",
|
|
77
|
+
"@stacksjs/database": "0.52.9",
|
|
78
|
+
"@stacksjs/desktop": "0.52.9",
|
|
79
|
+
"@stacksjs/development": "0.52.9",
|
|
80
|
+
"@stacksjs/docs": "0.52.9",
|
|
81
|
+
"@stacksjs/domains": "0.52.9",
|
|
82
|
+
"@stacksjs/email": "0.52.9",
|
|
83
|
+
"@stacksjs/error-handling": "0.52.9",
|
|
84
|
+
"@stacksjs/events": "0.52.9",
|
|
85
|
+
"@stacksjs/faker": "0.52.9",
|
|
86
|
+
"@stacksjs/git": "0.52.9",
|
|
87
|
+
"@stacksjs/health": "0.52.9",
|
|
88
|
+
"@stacksjs/lint": "0.52.9",
|
|
89
|
+
"@stacksjs/logging": "0.52.9",
|
|
90
|
+
"@stacksjs/modules": "0.52.9",
|
|
91
|
+
"@stacksjs/notifications": "0.52.9",
|
|
92
|
+
"@stacksjs/objects": "0.52.9",
|
|
93
|
+
"@stacksjs/orm": "0.52.9",
|
|
94
|
+
"@stacksjs/pages": "0.52.9",
|
|
95
|
+
"@stacksjs/path": "0.52.9",
|
|
96
|
+
"@stacksjs/payments": "0.52.9",
|
|
97
|
+
"@stacksjs/realtime": "0.52.9",
|
|
98
|
+
"@stacksjs/router": "0.52.9",
|
|
99
|
+
"@stacksjs/search-engine": "0.52.9",
|
|
100
|
+
"@stacksjs/security": "0.52.9",
|
|
101
|
+
"@stacksjs/server": "0.52.9",
|
|
102
|
+
"@stacksjs/signals": "0.52.9",
|
|
103
|
+
"@stacksjs/storage": "0.52.9",
|
|
104
|
+
"@stacksjs/strings": "0.52.9",
|
|
105
|
+
"@stacksjs/testing": "0.52.9",
|
|
106
|
+
"@stacksjs/types": "0.52.9",
|
|
107
|
+
"@stacksjs/ui": "0.52.9",
|
|
108
|
+
"@stacksjs/utils": "0.52.9",
|
|
109
|
+
"@stacksjs/validation": "0.52.9"
|
|
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.9",
|
|
113
|
+
"@stacksjs/ai": "0.52.9",
|
|
114
|
+
"@stacksjs/alias": "0.52.9",
|
|
115
|
+
"@stacksjs/arrays": "0.52.9",
|
|
116
|
+
"@stacksjs/auth": "0.52.9",
|
|
117
|
+
"@stacksjs/buddy": "0.52.9",
|
|
118
|
+
"@stacksjs/build": "0.52.9",
|
|
119
|
+
"@stacksjs/cache": "0.52.9",
|
|
120
|
+
"@stacksjs/cli": "0.52.9",
|
|
121
|
+
"@stacksjs/cloud": "0.52.9",
|
|
122
|
+
"@stacksjs/collections": "0.52.9",
|
|
123
|
+
"@stacksjs/config": "0.52.9",
|
|
124
|
+
"@stacksjs/database": "0.52.9",
|
|
125
|
+
"@stacksjs/desktop": "0.52.9",
|
|
126
|
+
"@stacksjs/development": "0.52.9",
|
|
127
|
+
"@stacksjs/docs": "0.52.9",
|
|
128
|
+
"@stacksjs/domains": "0.52.9",
|
|
129
|
+
"@stacksjs/email": "0.52.9",
|
|
130
|
+
"@stacksjs/error-handling": "0.52.9",
|
|
131
|
+
"@stacksjs/events": "0.52.9",
|
|
132
|
+
"@stacksjs/faker": "0.52.9",
|
|
133
|
+
"@stacksjs/git": "0.52.9",
|
|
134
|
+
"@stacksjs/health": "0.52.9",
|
|
135
|
+
"@stacksjs/lint": "0.52.9",
|
|
136
|
+
"@stacksjs/logging": "0.52.9",
|
|
137
|
+
"@stacksjs/modules": "0.52.9",
|
|
138
|
+
"@stacksjs/notifications": "0.52.9",
|
|
139
|
+
"@stacksjs/objects": "0.52.9",
|
|
140
|
+
"@stacksjs/orm": "0.52.9",
|
|
141
|
+
"@stacksjs/pages": "0.52.9",
|
|
142
|
+
"@stacksjs/path": "0.52.9",
|
|
143
|
+
"@stacksjs/payments": "0.52.9",
|
|
144
|
+
"@stacksjs/realtime": "0.52.9",
|
|
145
|
+
"@stacksjs/router": "0.52.9",
|
|
146
|
+
"@stacksjs/search-engine": "0.52.9",
|
|
147
|
+
"@stacksjs/security": "0.52.9",
|
|
148
|
+
"@stacksjs/server": "0.52.9",
|
|
149
|
+
"@stacksjs/signals": "0.52.9",
|
|
150
|
+
"@stacksjs/storage": "0.52.9",
|
|
151
|
+
"@stacksjs/strings": "0.52.9",
|
|
152
|
+
"@stacksjs/testing": "0.52.9",
|
|
153
|
+
"@stacksjs/types": "0.52.9",
|
|
154
|
+
"@stacksjs/ui": "0.52.9",
|
|
155
|
+
"@stacksjs/utils": "0.52.9",
|
|
156
|
+
"@stacksjs/validation": "0.52.9"
|
|
157
157
|
},
|
|
158
158
|
"scripts": {
|
|
159
159
|
"buddy": "tsx ./core/buddy/src/cli.ts",
|