@classytic/formkit 1.3.1 → 1.5.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,113 +1,116 @@
1
- {
2
- "name": "@classytic/formkit",
3
- "version": "1.3.1",
4
- "description": "Headless, type-safe form generation engine for React 19. Schema-driven with full TypeScript support.",
5
- "author": "Classytic",
6
- "license": "MIT",
7
- "type": "module",
8
- "sideEffects": false,
9
- "main": "./dist/index.mjs",
10
- "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.mts",
12
- "exports": {
13
- ".": {
14
- "types": "./dist/index.d.mts",
15
- "import": "./dist/index.mjs",
16
- "default": "./dist/index.mjs"
17
- },
18
- "./server": {
19
- "types": "./dist/server.d.mts",
20
- "import": "./dist/server.mjs",
21
- "default": "./dist/server.mjs"
22
- },
23
- "./package.json": "./package.json"
24
- },
25
- "files": [
26
- "dist",
27
- "README.md",
28
- "LICENSE",
29
- "CHANGELOG.md"
30
- ],
31
- "scripts": {
32
- "build": "tsdown",
33
- "dev": "tsdown --watch",
34
- "typecheck": "tsc --noEmit",
35
- "lint": "eslint src --ext .ts,.tsx",
36
- "test": "vitest run",
37
- "test:watch": "vitest",
38
- "test:coverage": "vitest run --coverage",
39
- "prepublishOnly": "npm run typecheck && npm run build && npm run test",
40
- "version:patch": "npm version patch",
41
- "version:minor": "npm version minor",
42
- "version:major": "npm version major",
43
- "publish:npm": "npm publish --access public",
44
- "release:patch": "npm run version:patch && npm run publish:npm",
45
- "release:minor": "npm run version:minor && npm run publish:npm",
46
- "release:major": "npm run version:major && npm run publish:npm"
47
- },
48
- "keywords": [
49
- "react",
50
- "react-19",
51
- "forms",
52
- "form-generator",
53
- "form-builder",
54
- "headless",
55
- "schema-driven",
56
- "typescript",
57
- "type-safe",
58
- "react-hook-form",
59
- "ui-agnostic",
60
- "tailwind",
61
- "shadcn",
62
- "dynamic-forms",
63
- "conditional-fields",
64
- "form-schema"
65
- ],
66
- "repository": {
67
- "type": "git",
68
- "url": "git+https://github.com/classytic/formkit.git"
69
- },
70
- "bugs": {
71
- "url": "https://github.com/classytic/formkit/issues"
72
- },
73
- "homepage": "https://github.com/classytic/formkit#readme",
74
- "peerDependencies": {
75
- "react": "^19.0.0",
76
- "react-dom": "^19.0.0",
77
- "react-hook-form": "^7.55.0"
78
- },
79
- "peerDependenciesMeta": {
80
- "react-dom": {
81
- "optional": true
82
- }
83
- },
84
- "dependencies": {
85
- "clsx": "^2.1.1",
86
- "tailwind-merge": "^2.5.5"
87
- },
88
- "devDependencies": {
89
- "@testing-library/jest-dom": "^6.9.1",
90
- "@testing-library/react": "^16.0.0",
91
- "@types/node": "^22.8.7",
92
- "@types/react": "^19.0.0",
93
- "@types/react-dom": "^19.0.0",
94
- "@typescript-eslint/eslint-plugin": "^8.0.0",
95
- "@typescript-eslint/parser": "^8.0.0",
96
- "@vitejs/plugin-react": "^4.3.0",
97
- "eslint": "^9.0.0",
98
- "happy-dom": "^20.8.3",
99
- "react": "^19.0.0",
100
- "react-dom": "^19.0.0",
101
- "react-hook-form": "^7.55.0",
102
- "tsdown": "^0.20.3",
103
- "typescript": "^5.6.3",
104
- "vitest": "^4.0.18"
105
- },
106
- "engines": {
107
- "node": ">=18.0.0"
108
- },
109
- "publishConfig": {
110
- "access": "public",
111
- "registry": "https://registry.npmjs.org/"
112
- }
113
- }
1
+ {
2
+ "name": "@classytic/formkit",
3
+ "version": "1.5.0",
4
+ "description": "Headless, type-safe form generation engine for React 19. Schema-driven with full TypeScript support.",
5
+ "author": "Classytic",
6
+ "license": "MIT",
7
+ "type": "module",
8
+ "sideEffects": false,
9
+ "types": "./dist/index.d.mts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.mts",
13
+ "module-sync": "./dist/index.mjs",
14
+ "import": "./dist/index.mjs",
15
+ "default": "./dist/index.mjs"
16
+ },
17
+ "./server": {
18
+ "types": "./dist/server.d.mts",
19
+ "module-sync": "./dist/server.mjs",
20
+ "import": "./dist/server.mjs",
21
+ "default": "./dist/server.mjs"
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
25
+ "files": [
26
+ "dist",
27
+ "README.md",
28
+ "LICENSE",
29
+ "CHANGELOG.md"
30
+ ],
31
+ "scripts": {
32
+ "build": "tsdown",
33
+ "dev": "tsdown --watch",
34
+ "typecheck": "tsc --noEmit",
35
+ "lint": "eslint src",
36
+ "test": "vitest run",
37
+ "test:watch": "vitest",
38
+ "test:coverage": "vitest run --coverage",
39
+ "prepublishOnly": "npm run typecheck && npm run build && npm run test",
40
+ "push": "classytic-push",
41
+ "version:patch": "npm version patch",
42
+ "version:minor": "npm version minor",
43
+ "version:major": "npm version major",
44
+ "publish:npm": "npm publish --access public --provenance",
45
+ "release:patch": "npm run version:patch && npm run publish:npm",
46
+ "release:minor": "npm run version:minor && npm run publish:npm",
47
+ "release:major": "npm run version:major && npm run publish:npm"
48
+ },
49
+ "keywords": [
50
+ "react",
51
+ "react-19",
52
+ "forms",
53
+ "form-generator",
54
+ "form-builder",
55
+ "headless",
56
+ "schema-driven",
57
+ "typescript",
58
+ "type-safe",
59
+ "react-hook-form",
60
+ "ui-agnostic",
61
+ "tailwind",
62
+ "shadcn",
63
+ "dynamic-forms",
64
+ "conditional-fields",
65
+ "form-schema"
66
+ ],
67
+ "repository": {
68
+ "type": "git",
69
+ "url": "git+https://github.com/classytic/formkit.git"
70
+ },
71
+ "bugs": {
72
+ "url": "https://github.com/classytic/formkit/issues"
73
+ },
74
+ "homepage": "https://github.com/classytic/formkit#readme",
75
+ "peerDependencies": {
76
+ "clsx": ">=2.0.0",
77
+ "react": "^19.0.0",
78
+ "react-dom": "^19.0.0",
79
+ "react-hook-form": "^7.60.0",
80
+ "tailwind-merge": ">=2.0.0"
81
+ },
82
+ "peerDependenciesMeta": {
83
+ "react-dom": {
84
+ "optional": true
85
+ }
86
+ },
87
+ "devDependencies": {
88
+ "@classytic/dev-tools": "^0.2.0",
89
+ "@testing-library/jest-dom": "^6.9.1",
90
+ "@testing-library/react": "^16.3.2",
91
+ "@types/node": "^22.15.0",
92
+ "@types/react": "^19.2.15",
93
+ "@types/react-dom": "^19.1.6",
94
+ "@typescript-eslint/eslint-plugin": "^8.60.0",
95
+ "@typescript-eslint/parser": "^8.60.0",
96
+ "@vitejs/plugin-react": "^5.2.0",
97
+ "clsx": "^2.1.1",
98
+ "eslint": "^9.39.4",
99
+ "eslint-plugin-react-hooks": "^7.1.1",
100
+ "happy-dom": "^20.9.0",
101
+ "react": "^19.2.6",
102
+ "react-dom": "^19.2.6",
103
+ "react-hook-form": "^7.76.1",
104
+ "tailwind-merge": "^3.3.0",
105
+ "tsdown": "^0.22.0",
106
+ "typescript": "^6.0.3",
107
+ "vitest": "^4.1.7"
108
+ },
109
+ "engines": {
110
+ "node": ">=20.19.0"
111
+ },
112
+ "publishConfig": {
113
+ "access": "public",
114
+ "registry": "https://registry.npmjs.org/"
115
+ }
116
+ }