@beeblock/svelar 0.5.0 → 0.5.1
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/README.md +21 -1
- package/dist/cli/bin.js +30 -21
- package/dist/cli/index.js +48 -48
- package/dist/plugins/PluginInstaller.js +1 -1
- package/dist/plugins/PluginRegistry.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -74,6 +74,23 @@ See the [Getting Started guide](https://svelar.dev/docs/getting-started) for a c
|
|
|
74
74
|
| **Stripe** | `svelar/stripe` | Billing, subscriptions, checkout, invoices, webhook handling |
|
|
75
75
|
| **Testing** | `svelar/testing` | Factory, `useSvelarTest()`, `refreshDatabase()`, `actingAs()`, database assertions |
|
|
76
76
|
|
|
77
|
+
## Official Plugins
|
|
78
|
+
|
|
79
|
+
| Package | Description |
|
|
80
|
+
|---------|-------------|
|
|
81
|
+
| [`@beeblock/svelar-datatable`](https://www.npmjs.com/package/@beeblock/svelar-datatable) | DataTable with sorting, searching, pagination, inline editing, export, virtual scroll |
|
|
82
|
+
| [`@beeblock/svelar-media`](https://www.npmjs.com/package/@beeblock/svelar-media) | File attachments with image conversions, collections, S3/local storage |
|
|
83
|
+
| [`@beeblock/svelar-social-auth`](https://www.npmjs.com/package/@beeblock/svelar-social-auth) | OAuth providers (Google, GitHub, Facebook, Twitter, Discord) |
|
|
84
|
+
| [`@beeblock/svelar-two-factor`](https://www.npmjs.com/package/@beeblock/svelar-two-factor) | TOTP two-factor authentication with QR setup and recovery codes |
|
|
85
|
+
| [`@beeblock/svelar-settings`](https://www.npmjs.com/package/@beeblock/svelar-settings) | Typed settings with database persistence and per-user/per-team scoping |
|
|
86
|
+
| [`@beeblock/svelar-comments`](https://www.npmjs.com/package/@beeblock/svelar-comments) | Threaded comments with moderation, voting, and HasComments mixin |
|
|
87
|
+
| [`@beeblock/svelar-activity-log`](https://www.npmjs.com/package/@beeblock/svelar-activity-log) | Audit trail with LogsActivity mixin and causer tracking |
|
|
88
|
+
| [`@beeblock/svelar-backup`](https://www.npmjs.com/package/@beeblock/svelar-backup) | Database backup with local/S3 destinations and cleanup policies |
|
|
89
|
+
| [`@beeblock/svelar-charts`](https://www.npmjs.com/package/@beeblock/svelar-charts) | SVG chart components (line, bar, pie, doughnut, area) |
|
|
90
|
+
| [`@beeblock/svelar-tags`](https://www.npmjs.com/package/@beeblock/svelar-tags) | Tagging with HasTags mixin, tag types, slugs, and tag input UI |
|
|
91
|
+
| [`@beeblock/svelar-impersonate`](https://www.npmjs.com/package/@beeblock/svelar-impersonate) | User impersonation with session guards and banner UI |
|
|
92
|
+
| [`@beeblock/svelar-sitemap`](https://www.npmjs.com/package/@beeblock/svelar-sitemap) | XML sitemap generation with scheduling and model discovery |
|
|
93
|
+
|
|
77
94
|
## CLI
|
|
78
95
|
|
|
79
96
|
```bash
|
|
@@ -89,9 +106,12 @@ npx svelar migrate # run migrations
|
|
|
89
106
|
npx svelar schedule:run # start the scheduler
|
|
90
107
|
npx svelar queue:work # process queue jobs
|
|
91
108
|
npx svelar tinker # interactive REPL
|
|
109
|
+
npx svelar plugin:list # list discovered plugins
|
|
110
|
+
npx svelar plugin:install @beeblock/svelar-tags # install + publish
|
|
111
|
+
npx svelar plugin:publish @beeblock/svelar-tags # publish migrations & routes
|
|
92
112
|
```
|
|
93
113
|
|
|
94
|
-
|
|
114
|
+
44 commands available. Run `npx svelar` to see all commands.
|
|
95
115
|
|
|
96
116
|
## Database Support
|
|
97
117
|
|