@stacksjs/config 0.58.59 → 0.58.62

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/defaults.ts +4 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/config",
3
3
  "type": "module",
4
- "version": "0.58.59",
4
+ "version": "0.58.62",
5
5
  "description": "The Stacks config helper methods.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/defaults.ts CHANGED
@@ -433,16 +433,18 @@ export default {
433
433
 
434
434
  team: {
435
435
  name: 'Stacks',
436
- members: [{
436
+ members: {
437
437
  'Chris Breuer': 'chris@stacksjs.org',
438
- }],
438
+ },
439
439
  },
440
440
 
441
441
  ui: {
442
442
  shortcuts: [
443
443
  ['btn', 'inline-flex items-center px-4 py-2 ml-2 border border-transparent shadow-sm text-base font-medium rounded-md text-white bg-indigo-600 hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 cursor-pointer'],
444
444
  ],
445
+
445
446
  safelist: 'prose prose-sm m-auto text-left',
447
+
446
448
  trigger: ':stx:',
447
449
  classPrefix: 'stx-',
448
450
  reset: 'tailwind',