@stacksjs/buddy 0.46.4 → 0.47.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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +39 -30
package/README.md CHANGED
@@ -50,6 +50,7 @@ _Develop serverless (or server) functions with countless helpers to build scalab
50
50
  - ⚙️ **CLIs** _create beautiful CLIs for Linux, Windows, and Mac—without requirements_
51
51
  - 📀 **Database** _MySQL, Postgres, PlanetScale, Supabase, Prisma, ..._
52
52
  - 👾 **Errors** _native type-safe error handling_
53
+ - 🗓️ **Events** _functional event (front & backend) communication_
53
54
  - 📢 **Notifications** _emails, SMSs, direct, and push notifications & webhooks_
54
55
  - 💳 **Payments** _unified API for one-off & subscription billing methods for Stripe_
55
56
  - ⚙️ **Queues** _run your heavy workload in the background_
@@ -114,7 +115,7 @@ npx stacks new my-project
114
115
  ```
115
116
 
116
117
  > **Note**
117
- > pnpm 7.18 or higher required. _Run the setup script & 🐶 Buddy will set you up. He barks otherwise._
118
+ > pnpm 7.20 or higher required. _Run the setup script & 🐶 Buddy will set you up. He barks otherwise._
118
119
 
119
120
  ## 🤖 Usage
120
121
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/buddy",
3
3
  "type": "module",
4
- "version": "0.46.4",
5
- "packageManager": "pnpm@7.19.0",
4
+ "version": "0.47.0",
5
+ "packageManager": "pnpm@7.20.0",
6
6
  "description": "Meet Buddy. The Stacks runtime.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -51,39 +51,48 @@
51
51
  ],
52
52
  "engines": {
53
53
  "node": ">=v18.12.1",
54
- "pnpm": ">=7.19.0"
54
+ "pnpm": ">=7.20.0"
55
55
  },
56
56
  "peerDependencies": {
57
- "@stacksjs/actions": "0.46.4",
58
- "@stacksjs/alias": "0.46.4",
59
- "@stacksjs/arrays": "0.46.4",
60
- "@stacksjs/build": "0.46.4",
61
- "@stacksjs/cli": "0.46.4",
62
- "@stacksjs/cloud": "0.46.4",
63
- "@stacksjs/collections": "0.46.4",
64
- "@stacksjs/config": "0.46.4",
65
- "@stacksjs/docs": "0.46.4",
66
- "@stacksjs/domains": "0.46.4",
67
- "@stacksjs/error-handling": "0.46.4",
68
- "@stacksjs/git": "0.46.4",
69
- "@stacksjs/lint": "0.46.4",
70
- "@stacksjs/logging": "0.46.4",
71
- "@stacksjs/modules": "0.46.4",
72
- "@stacksjs/objects": "0.46.4",
73
- "@stacksjs/path": "0.46.4",
74
- "@stacksjs/router": "0.46.4",
75
- "@stacksjs/security": "0.46.4",
76
- "@stacksjs/server": "0.46.4",
77
- "@stacksjs/storage": "0.46.4",
78
- "@stacksjs/strings": "0.46.4",
79
- "@stacksjs/testing": "0.46.4",
80
- "@stacksjs/types": "0.46.4",
81
- "@stacksjs/ui": "0.46.4",
82
- "@stacksjs/utils": "0.46.4"
57
+ "@stacksjs/actions": "0.47.0",
58
+ "@stacksjs/ai": "0.47.0",
59
+ "@stacksjs/alias": "0.47.0",
60
+ "@stacksjs/arrays": "0.47.0",
61
+ "@stacksjs/auth": "0.47.0",
62
+ "@stacksjs/build": "0.47.0",
63
+ "@stacksjs/cache": "0.47.0",
64
+ "@stacksjs/cli": "0.47.0",
65
+ "@stacksjs/cloud": "0.47.0",
66
+ "@stacksjs/collections": "0.47.0",
67
+ "@stacksjs/config": "0.47.0",
68
+ "@stacksjs/docs": "0.47.0",
69
+ "@stacksjs/domains": "0.47.0",
70
+ "@stacksjs/email": "0.47.0",
71
+ "@stacksjs/error-handling": "0.47.0",
72
+ "@stacksjs/events": "0.47.0",
73
+ "@stacksjs/git": "0.47.0",
74
+ "@stacksjs/health": "0.47.0",
75
+ "@stacksjs/lint": "0.47.0",
76
+ "@stacksjs/logging": "0.47.0",
77
+ "@stacksjs/modules": "0.47.0",
78
+ "@stacksjs/notifications": "0.47.0",
79
+ "@stacksjs/objects": "0.47.0",
80
+ "@stacksjs/path": "0.47.0",
81
+ "@stacksjs/payments": "0.47.0",
82
+ "@stacksjs/realtime": "0.47.0",
83
+ "@stacksjs/router": "0.47.0",
84
+ "@stacksjs/search-engine": "0.47.0",
85
+ "@stacksjs/security": "0.47.0",
86
+ "@stacksjs/server": "0.47.0",
87
+ "@stacksjs/storage": "0.47.0",
88
+ "@stacksjs/strings": "0.47.0",
89
+ "@stacksjs/testing": "0.47.0",
90
+ "@stacksjs/types": "0.47.0",
91
+ "@stacksjs/ui": "0.47.0",
92
+ "@stacksjs/utils": "0.47.0"
83
93
  },
84
94
  "devDependencies": {
85
95
  "only-allow": "^1.1.1",
86
- "pnpm": ">=7.19.0",
87
96
  "typescript": "^4.9.4",
88
97
  "unbuild": "^1.0.2"
89
98
  },