@nextlyhq/plugin-page-builder 0.0.2-alpha.31
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 +240 -0
- package/dist/admin/index.d.ts +56 -0
- package/dist/admin/index.js +2463 -0
- package/dist/admin/index.js.map +1 -0
- package/dist/chunk-7VN7UNLK.js +45 -0
- package/dist/chunk-7VN7UNLK.js.map +1 -0
- package/dist/chunk-ABMSYCSD.js +355 -0
- package/dist/chunk-ABMSYCSD.js.map +1 -0
- package/dist/chunk-E4G7NNXW.js +21 -0
- package/dist/chunk-E4G7NNXW.js.map +1 -0
- package/dist/chunk-EGU6QGUC.js +119 -0
- package/dist/chunk-EGU6QGUC.js.map +1 -0
- package/dist/chunk-R7YHOSL2.js +483 -0
- package/dist/chunk-R7YHOSL2.js.map +1 -0
- package/dist/index.d.ts +196 -0
- package/dist/index.js +190 -0
- package/dist/index.js.map +1 -0
- package/dist/render/ErrorBoundary.d.ts +23 -0
- package/dist/render/ErrorBoundary.js +8 -0
- package/dist/render/ErrorBoundary.js.map +1 -0
- package/dist/render/index.d.ts +151 -0
- package/dist/render/index.js +64 -0
- package/dist/render/index.js.map +1 -0
- package/dist/style-compiler-hnWIDfko.d.ts +212 -0
- package/dist/styles/editor.css +412 -0
- package/package.json +109 -0
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nextlyhq/plugin-page-builder",
|
|
3
|
+
"version": "0.0.2-alpha.31",
|
|
4
|
+
"description": "Visual page builder plugin for Nextly (blocks, drag-and-drop, server-first rendering)",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": [
|
|
8
|
+
"**/*.css",
|
|
9
|
+
"./dist/admin/index.js"
|
|
10
|
+
],
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"module": "./dist/index.js",
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"exports": {
|
|
15
|
+
".": {
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"import": "./dist/index.js",
|
|
18
|
+
"default": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./admin": {
|
|
21
|
+
"types": "./dist/admin/index.d.ts",
|
|
22
|
+
"import": "./dist/admin/index.js",
|
|
23
|
+
"default": "./dist/admin/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./render": {
|
|
26
|
+
"types": "./dist/render/index.d.ts",
|
|
27
|
+
"import": "./dist/render/index.js",
|
|
28
|
+
"default": "./dist/render/index.js"
|
|
29
|
+
},
|
|
30
|
+
"./styles/editor.css": "./dist/styles/editor.css"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"README.md"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsup",
|
|
38
|
+
"dev": "tsup --watch",
|
|
39
|
+
"check-types": "tsc --noEmit",
|
|
40
|
+
"lint": "eslint . --max-warnings 0",
|
|
41
|
+
"lint:fix": "eslint . --fix",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"test:watch": "vitest"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@dnd-kit/dom": "0.5.0",
|
|
47
|
+
"@dnd-kit/react": "0.5.0",
|
|
48
|
+
"css-tree": "^2.3.1"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"@nextlyhq/admin": "0.0.2-alpha.29",
|
|
52
|
+
"nextly": "0.0.2-alpha.29",
|
|
53
|
+
"@nextlyhq/plugin-sdk": "0.0.2-alpha.29",
|
|
54
|
+
"@nextlyhq/ui": "0.0.2-alpha.29",
|
|
55
|
+
"@tanstack/react-query": ">=5.0.0",
|
|
56
|
+
"lucide-react": ">=0.400.0",
|
|
57
|
+
"react-hook-form": ">=7.0.0",
|
|
58
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
59
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
60
|
+
"next": "^14.0.0 || ^15.0.0 || ^16.0.0"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@nextlyhq/admin": "workspace:*",
|
|
64
|
+
"@nextlyhq/plugin-sdk": "workspace:*",
|
|
65
|
+
"@nextlyhq/tsconfig": "workspace:*",
|
|
66
|
+
"@nextlyhq/ui": "workspace:*",
|
|
67
|
+
"@tanstack/react-query": "^5.0.0",
|
|
68
|
+
"@types/css-tree": "^2.3.4",
|
|
69
|
+
"@types/node": "^20.0.0",
|
|
70
|
+
"@types/react": "19.2.0",
|
|
71
|
+
"@types/react-dom": "19.2.0",
|
|
72
|
+
"lucide-react": "^0.469.0",
|
|
73
|
+
"nextly": "workspace:*",
|
|
74
|
+
"react": "19.2.0",
|
|
75
|
+
"react-dom": "19.2.0",
|
|
76
|
+
"react-hook-form": "^7.66.0",
|
|
77
|
+
"tsup": "^8.0.0",
|
|
78
|
+
"typescript": "^5.3.0",
|
|
79
|
+
"vitest": "^4.0.8"
|
|
80
|
+
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": ">=20.0.0"
|
|
83
|
+
},
|
|
84
|
+
"keywords": [
|
|
85
|
+
"nextly",
|
|
86
|
+
"nextly-plugin",
|
|
87
|
+
"plugin",
|
|
88
|
+
"page-builder",
|
|
89
|
+
"blocks",
|
|
90
|
+
"visual-editor",
|
|
91
|
+
"cms",
|
|
92
|
+
"headless-cms"
|
|
93
|
+
],
|
|
94
|
+
"repository": {
|
|
95
|
+
"type": "git",
|
|
96
|
+
"url": "git+https://github.com/nextlyhq/nextly.git",
|
|
97
|
+
"directory": "packages/plugin-page-builder"
|
|
98
|
+
},
|
|
99
|
+
"publishConfig": {
|
|
100
|
+
"access": "public",
|
|
101
|
+
"registry": "https://registry.npmjs.org/",
|
|
102
|
+
"provenance": true
|
|
103
|
+
},
|
|
104
|
+
"homepage": "https://nextlyhq.com",
|
|
105
|
+
"bugs": {
|
|
106
|
+
"url": "https://github.com/nextlyhq/nextly/issues"
|
|
107
|
+
},
|
|
108
|
+
"author": "Nextly <contact@nextlyhq.com> (https://nextlyhq.com)"
|
|
109
|
+
}
|