UNPKG

@canard/schema-form-antd-plugin

Version:

Ant Design components plugin for @canard/schema-form providing pre-built form inputs with advanced components like date pickers, sliders, and file uploads

81 lines 2.33 kB
{ "name": "@canard/schema-form-antd-plugin", "version": "0.9.1", "description": "Ant Design components plugin for @canard/schema-form providing pre-built form inputs with advanced components like date pickers, sliders, and file uploads", "keywords": [ "react", "@canard/schema-form", "schema-form", "canard-form", "json-schema", "form", "plugin", "antd", "ant-design", "ui-library", "typescript", "form-components" ], "repository": { "type": "git", "url": "https://github.com/vincent-kk/albatrion.git", "directory": "packages/canard/schema-form-antd-plugin" }, "license": "MIT", "author": { "name": "Vincent K. Kelvin", "email": "lunox273@gmail.com" }, "type": "module", "exports": { ".": { "source": "./src/index.ts", "types": "./dist/index.d.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-storybook": "storybook build", "build:publish:npm": "yarn build && yarn publish:npm", "build:types": "tsc -p ./tsconfig.declarations.json && tsc-alias -p ./tsconfig.declarations.json", "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": { "@ant-design/icons": "^5.0.0", "@winglet/common-utils": "^0.9.0", "@winglet/react-utils": "^0.9.0", "antd": "^5.10.0", "dayjs": "^1.0.0" }, "devDependencies": { "@canard/schema-form": "^0.9.2", "@canard/schema-form-ajv8-plugin": "^0.9.1", "@types/react": "^19.0.0", "@types/react-dom": "^19.0.0", "react": "^19.0.0", "react-dom": "^19.0.0" }, "peerDependencies": { "antd": ">=5.10.0", "dayjs": ">=1", "react": ">=18 <20", "react-dom": ">=18 <20" } }