-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
30 lines (30 loc) · 1.26 KB
/
Copy pathplugin.json
File metadata and controls
30 lines (30 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "Page Builder",
"slug": "page-builder",
"version": "0.1.0-alpha.1",
"status": "alpha",
"brand": "TN CMS",
"author": "TN CMS",
"description": "Foundation for a structured, block-based Page Builder. The admin editor is a heavy client; the frontend stays lightweight by rendering a structured (non-HTML) layout tree. Phase 1 ships the plugin skeleton only — registries, manager, facade, permissions and an admin status dashboard.",
"requires": {
"tncms": "^1.0"
},
"assets": {
"source": "public"
},
"providers": [
"Plugins\\PageBuilder\\PageBuilderServiceProvider"
],
"filament": {
"resources": [],
"pages": [
"Plugins\\PageBuilder\\Filament\\Pages\\PageBuilderDashboardPage",
"Plugins\\PageBuilder\\Filament\\Pages\\PageBuilderSettingsPage",
"Plugins\\PageBuilder\\Filament\\Pages\\DesignLibraryPage",
"Plugins\\PageBuilder\\Filament\\Pages\\PageBuilderEditorPage",
"Plugins\\PageBuilder\\Filament\\Pages\\PageBuilderFrontendEditorPage",
"Plugins\\PageBuilder\\Filament\\Pages\\LayoutTranslationReviewPage",
"Plugins\\PageBuilder\\Filament\\Pages\\LayoutTranslationTimelinePage"
]
}
}