@msbci/form-editor 1.0.2 → 1.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msbci/form-editor",
3
- "version": "1.0.2",
3
+ "version": "1.2.0",
4
4
  "description": "Visual form builder — 3-panel editor with drag & drop",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.mjs",
@@ -20,12 +20,23 @@
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "dev": "tsup --watch",
26
+ "lint": "eslint src/",
27
+ "typecheck": "tsc --noEmit",
28
+ "test": "vitest run",
29
+ "test:watch": "vitest",
30
+ "test:coverage": "vitest run --coverage",
31
+ "obfuscate": "node ../../scripts/obfuscate.js ./dist",
32
+ "clean": "rm -rf dist .turbo"
33
+ },
23
34
  "dependencies": {
35
+ "@msbci/form-core": "workspace:*",
24
36
  "@dnd-kit/core": "^6.1.0",
25
37
  "@dnd-kit/sortable": "^8.0.0",
26
38
  "@dnd-kit/utilities": "^3.2.0",
27
- "zustand": "^5.0.0",
28
- "@msbci/form-core": "1.0.2"
39
+ "zustand": "^5.0.0"
29
40
  },
30
41
  "peerDependencies": {
31
42
  "react": "^18.0.0 || ^19.0.0",
@@ -45,16 +56,5 @@
45
56
  "typescript": "^5.7.0"
46
57
  },
47
58
  "sideEffects": false,
48
- "license": "SEE LICENSE IN LICENSE.md",
49
- "scripts": {
50
- "build": "tsup",
51
- "dev": "tsup --watch",
52
- "lint": "eslint src/",
53
- "typecheck": "tsc --noEmit",
54
- "test": "vitest run",
55
- "test:watch": "vitest",
56
- "test:coverage": "vitest run --coverage",
57
- "obfuscate": "node ../../scripts/obfuscate.js ./dist",
58
- "clean": "rm -rf dist .turbo"
59
- }
60
- }
59
+ "license": "SEE LICENSE IN LICENSE.md"
60
+ }