extended-dynamic-forms
Version:
Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events
104 lines (103 loc) • 3.25 kB
JSON
{
"name": "extended-dynamic-forms",
"version": "0.1.22",
"description": "Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events",
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"examples",
"LICENSE",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js",
"types": "./dist/index.d.ts"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:vanilla": "vite build --config vite.config.vanilla.ts",
"build:all": "npm run build && npm run build:vanilla",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 10",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"prepublishOnly": "npm run build",
"playground": "cd playground && npm install && npm run dev",
"playground:build": "cd playground && npm run build",
"serve:examples": "npx http-server examples/vanilla-js -p 8080 -o"
},
"keywords": [
"react",
"json-schema",
"forms",
"rjsf",
"dynamic-forms",
"typescript"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/user/extended-dynamic-forms.git"
},
"homepage": "https://github.com/user/extended-dynamic-forms#readme",
"bugs": {
"url": "https://github.com/user/extended-dynamic-forms/issues"
},
"peerDependencies": {
"antd": "^5.24.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rjsf/antd": "file:../react-jsonschema-form/packages/antd",
"@rjsf/core": "file:../react-jsonschema-form/packages/core",
"@rjsf/utils": "file:../react-jsonschema-form/packages/utils",
"@rjsf/validator-ajv8": "file:../react-jsonschema-form/packages/validator-ajv8",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.0.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"antd": "^5.26.0",
"clsx": "^2.1.1",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"terser": "^5.40.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.0.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"json-rules-engine-simplified": "^0.2.0"
},
"type": "module"
}