@canard/schema-form-mui-plugin
Version:
Material-UI (MUI) components plugin for @canard/schema-form providing pre-built form inputs with modern MUI styling and MUI X integration
89 lines • 2.6 kB
JSON
{
"name": "@canard/schema-form-mui-plugin",
"version": "0.11.0",
"description": "Material-UI (MUI) components plugin for @canard/schema-form providing pre-built form inputs with modern MUI styling and MUI X integration",
"keywords": [
"react",
"@canard/schema-form",
"schema-form",
"canard-form",
"json-schema",
"form",
"plugin",
"material-ui",
"mui",
"mui-x",
"material-design",
"typescript",
"form-components"
],
"repository": {
"type": "git",
"url": "https://github.com/vincent-kk/albatrion.git",
"directory": "packages/canard/schema-form-mui-plugin"
},
"license": "MIT",
"author": {
"name": "Vincent K. Kelvin",
"email": "lunox273@gmail.com"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"source": "./src/index.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c && yarn build:types",
"build:publish:npm": "yarn build && yarn publish:npm",
"build:types": "tsc -p ./tsconfig.declarations.json && tsc-alias -p ./tsconfig.declarations.json",
"build-storybook": "storybook build",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --report-unused-disable-directives --max-warnings 0",
"publish:npm": "yarn npm publish --access public",
"start": "yarn build && yarn storybook",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"version:major": "yarn version major",
"version:minor": "yarn version minor",
"version:patch": "yarn version patch"
},
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/icons-material": "^7.0.0",
"@mui/material": "^7.0.0",
"@mui/x-date-pickers": "^8.0.0",
"@winglet/common-utils": "^0.11.0",
"@winglet/react-utils": "^0.11.0",
"dayjs": "^1.0.0"
},
"devDependencies": {
"@canard/schema-form": "^0.11.0",
"@canard/schema-form-ajv8-plugin": "^0.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"peerDependencies": {
"@emotion/react": ">=11.0.0",
"@emotion/styled": ">=11.0.0",
"@mui/icons-material": ">=7.0.0",
"@mui/material": ">=7.0.0",
"@mui/x-date-pickers": ">=8.0.0",
"dayjs": ">=1",
"react": ">=18 <20",
"react-dom": ">=18 <20"
}
}