form-page-builder 0.1.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.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "form-page-builder",
3
+ "version": "0.1.0",
4
+ "description": "Embeddable bilingual drag-and-drop form/content builder for React and Next.js — builds and previews a JSON form schema (fields, sections, layout blocks); does not handle or store submitted data itself.",
5
+ "license": "MIT",
6
+ "author": "MainSolutionCoLtd",
7
+ "homepage": "https://mainsolutioncoltd.github.io/form-page-builder/",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/MainSolutionCoLtd/form-page-builder.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/MainSolutionCoLtd/form-page-builder/issues"
14
+ },
15
+ "engines": {
16
+ "node": ">=18.18"
17
+ },
18
+ "keywords": [
19
+ "react",
20
+ "nextjs",
21
+ "form-builder",
22
+ "drag-and-drop",
23
+ "bilingual",
24
+ "i18n",
25
+ "form-schema",
26
+ "page-builder",
27
+ "form-page-builder"
28
+ ],
29
+ "type": "module",
30
+ "main": "./dist/index.cjs",
31
+ "module": "./dist/index.js",
32
+ "types": "./dist/index.d.ts",
33
+ "exports": {
34
+ ".": {
35
+ "types": "./dist/index.d.ts",
36
+ "import": "./dist/index.js",
37
+ "require": "./dist/index.cjs"
38
+ },
39
+ "./package.json": "./package.json"
40
+ },
41
+ "files": [
42
+ "dist"
43
+ ],
44
+ "sideEffects": false,
45
+ "scripts": {
46
+ "dev": "vite",
47
+ "build": "tsup",
48
+ "build:demo": "vite build",
49
+ "typecheck": "tsc --noEmit",
50
+ "prepublishOnly": "npm run build",
51
+ "changeset": "changeset",
52
+ "changeset:version": "changeset version"
53
+ },
54
+ "peerDependencies": {
55
+ "react": ">=18",
56
+ "react-dom": ">=18"
57
+ },
58
+ "dependencies": {
59
+ "lucide-react": "^0.400.0"
60
+ },
61
+ "devDependencies": {
62
+ "@changesets/changelog-github": "^0.5.0",
63
+ "@changesets/cli": "^2.27.0",
64
+ "@types/react": "^18.3.0",
65
+ "@types/react-dom": "^18.3.0",
66
+ "@vitejs/plugin-react": "^4.3.0",
67
+ "react": "^18.3.0",
68
+ "react-dom": "^18.3.0",
69
+ "tsup": "^8.0.0",
70
+ "typescript": "^5.4.0",
71
+ "vite": "^5.4.0"
72
+ }
73
+ }