-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
126 lines (126 loc) · 3.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "mui-schema-form-builder",
"version": "1.9.0",
"description": "Schema-driven, type-safe form builder for MUI + React Hook Form + Zod",
"author": "Arjun Prakash <apkarjundeveloper@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"react",
"form",
"form-builder",
"schema",
"schema-driven",
"mui",
"material-ui",
"react-hook-form",
"zod",
"typescript",
"validation",
"autocomplete",
"conditional-fields"
],
"repository": {
"type": "git",
"url": "https://github.com/APK-Arjun-Developer/mui-schema-form-builder"
},
"bugs": {
"url": "https://github.com/APK-Arjun-Developer/mui-schema-form-builder/issues"
},
"homepage": "https://apk-arjun-developer.github.io/mui-schema-form-builder",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "tsup",
"build:example": "vite build",
"watch": "tsup --watch",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.{ts,tsx}\" \"*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" \"*.{ts,js,json}\"",
"lint": "eslint src --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"release": "semantic-release",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"ci": "bun run format:check && bun run lint && bun run typecheck && bun run test:coverage && bun run build"
},
"peerDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^3.0.0 || ^5.0.0",
"@mui/material": "^5.14.0 || ^6.0.0 || ^9.0.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-hook-form": "^7.0.0",
"react-window": "^1.8.0",
"zod": "^3.0.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"react-window": {
"optional": true
}
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@hookform/resolvers": "^5.4.0",
"@mui/material": "^9.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^8.6.14",
"@storybook/blocks": "^8.6.14",
"@storybook/react-vite": "^8.6.18",
"@testing-library/jest-dom": "^6.10.0",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-window": "^1.8.8",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest-axe": "^10.0.0",
"jsdom": "^26.1.0",
"prettier": "^3.9.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "^7.82.0",
"react-window": "^1.8.11",
"rimraf": "^6.1.3",
"semantic-release": "^24.2.9",
"storybook": "^8.6.18",
"tsup": "^8.5.1",
"typescript": "~5.8.3",
"vite": "^6.4.3",
"vitest": "^4.1.10",
"zod": "^4.4.3"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}