@squaredr/fieldcraft-pro 0.0.1 → 0.0.3

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/LICENSE.txt +13 -0
  2. package/package.json +24 -17
package/LICENSE.txt ADDED
@@ -0,0 +1,13 @@
1
+ Copyright (c) 2026 SquaredR. All Rights Reserved.
2
+
3
+ This software and associated documentation files (the "Software") are proprietary
4
+ and confidential. Unauthorized copying, modification, distribution, or use of this
5
+ Software, via any medium, is strictly prohibited.
6
+
7
+ The Software is licensed, not sold. Use of the Software requires a valid license key
8
+ obtained from https://squaredr.tech. See the license agreement at
9
+ https://squaredr.tech/legal/fieldcraft-pro-license for full terms.
10
+
11
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED.
12
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
13
+ OR OTHER LIABILITY ARISING FROM THE USE OF THE SOFTWARE.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squaredr/fieldcraft-pro",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Pro components for FieldCraft — visual drag-and-drop Form Builder, Response Viewer, and Theme Editor for React",
5
5
  "keywords": [
6
6
  "fieldcraft",
@@ -48,24 +48,23 @@
48
48
  "./styles.css": "./dist/styles.css",
49
49
  "./theme-editor/styles.css": "./dist/theme-editor-styles.css"
50
50
  },
51
- "files": ["dist", "README.md"],
52
- "sideEffects": ["./dist/styles.css", "./dist/theme-editor-styles.css", "*.css"],
53
- "scripts": {
54
- "build": "tsup && npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --minify && cp src/theme-editor/styles.css dist/theme-editor-styles.css",
55
- "build:css": "npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --minify && cp src/theme-editor/styles.css dist/theme-editor-styles.css",
56
- "dev": "npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css && npx concurrently \"npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --watch\" \"tsup --watch\"",
57
- "test": "vitest run",
58
- "typecheck": "tsc --noEmit",
59
- "clean": "rm -rf dist"
60
- },
51
+ "files": [
52
+ "dist",
53
+ "README.md"
54
+ ],
55
+ "sideEffects": [
56
+ "./dist/styles.css",
57
+ "./dist/theme-editor-styles.css",
58
+ "*.css"
59
+ ],
61
60
  "dependencies": {
62
61
  "@dnd-kit/core": "^6.1.0",
63
62
  "@dnd-kit/sortable": "^8.0.0",
64
63
  "@dnd-kit/utilities": "^3.2.2",
65
- "@squaredr/fieldcraft-pro-license": "workspace:*",
66
64
  "clsx": "^2.1.1",
67
65
  "lucide-react": "^1.16.0",
68
- "tailwind-merge": "^3.6.0"
66
+ "tailwind-merge": "^3.6.0",
67
+ "@squaredr/fieldcraft-pro-license": "1.1.1"
69
68
  },
70
69
  "peerDependencies": {
71
70
  "@squaredr/fieldcraft-core": "^1.2.0",
@@ -75,7 +74,6 @@
75
74
  },
76
75
  "devDependencies": {
77
76
  "@squaredr/fieldcraft-core": "^1.2.0",
78
- "@squaredr/fieldcraft-pro-tsconfig": "workspace:*",
79
77
  "@squaredr/fieldcraft-react": "^1.2.1",
80
78
  "@tailwindcss/cli": "^4.3.0",
81
79
  "@types/react": "^19.2.14",
@@ -85,9 +83,18 @@
85
83
  "tailwindcss": "^4.3.0",
86
84
  "tsup": "^8.0",
87
85
  "typescript": "^5.5",
88
- "vitest": "^2.0"
86
+ "vitest": "^2.0",
87
+ "@squaredr/fieldcraft-pro-tsconfig": "0.0.1"
89
88
  },
90
89
  "license": "SEE LICENSE IN LICENSE.txt",
91
90
  "author": "SquaredR",
92
- "homepage": "https://squaredr.tech/products/fieldcraft/admin-pro"
93
- }
91
+ "homepage": "https://squaredr.tech/products/fieldcraft/admin-pro",
92
+ "scripts": {
93
+ "build": "tsup && npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --minify && cp src/theme-editor/styles.css dist/theme-editor-styles.css",
94
+ "build:css": "npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --minify && cp src/theme-editor/styles.css dist/theme-editor-styles.css",
95
+ "dev": "npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css && npx concurrently \"npx @tailwindcss/cli -i src/form-builder/styles/formbuilder.css -o dist/styles.css --watch\" \"tsup --watch\"",
96
+ "test": "vitest run",
97
+ "typecheck": "tsc --noEmit",
98
+ "clean": "rm -rf dist"
99
+ }
100
+ }