{
  "name": "@rjsf/core",
  "version": "6.8.0",
  "description": "A simple React component capable of building HTML forms out of a JSON schema.",
  "lint-staged": {
    "{src,test}/**/*.{ts,tsx,js,jsx}": [
      "oxlint --fix",
      "oxfmt"
    ]
  },
  "main": "dist/index.js",
  "module": "lib/index.js",
  "typings": "lib/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./lib/index.js"
    },
    "./lib": {
      "types": "./lib/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./lib/index.js"
    },
    "./lib/*.js": {
      "types": "./lib/*.d.ts",
      "require": "./dist/*.cjs",
      "import": "./lib/*.js"
    },
    "./dist": {
      "types": "./lib/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./lib/index.js"
    },
    "./dist/*.cjs": {
      "types": "./lib/*.d.ts",
      "require": "./dist/*.cjs",
      "import": "./lib/*.js"
    }
  },
  "files": [
    "dist",
    "lib",
    "src"
  ],
  "engineStrict": false,
  "engines": {
    "node": ">=20"
  },
  "peerDependencies": {
    "react": ">=18",
    "@rjsf/utils": "^6.8.0"
  },
  "dependencies": {
    "lodash": "^4.18.1",
    "lodash-es": "^4.18.1",
    "markdown-to-jsx": "^9.8.2",
    "prop-types": "^15.8.1"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.6.1",
    "@types/json-schema": "^7.0.15",
    "@types/react-portal": "^4.0.7",
    "ajv": "^8.20.0",
    "atob": "^2.1.2",
    "react-portal": "^4.3.0",
    "@rjsf/snapshot-tests": "^6.8.0",
    "@rjsf/utils": "^6.8.0",
    "@rjsf/validator-ajv8": "^6.8.0"
  },
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rjsf-team/react-jsonschema-form.git"
  },
  "author": "Nicolas Perriault <nperriault@mozilla.com>",
  "contributors": [
    "Heath Chiavettone <heath.chiavettone@freenome.com"
  ],
  "keywords": [
    "react",
    "form",
    "json-schema"
  ],
  "license": "Apache-2.0",
  "homepage": "https://github.com/rjsf-team/react-jsonschema-form",
  "publishConfig": {
    "access": "public"
  },
  "nx": {
    "targets": {
      "build": {
        "dependsOn": [
          {
            "//": "Break the dependency cycle between @rjsf/core and @rjsf/snapshot-tests by explicitly listing the dependencies needed for build",
            "projects": [
              "@rjsf/utils",
              "@rjsf/validator-ajv8"
            ],
            "target": "build"
          }
        ]
      }
    }
  },
  "scripts": {
    "compileReplacer": "tsc -p tsconfig.replacer.json && move-file lodashReplacer.js lodashReplacer.cjs",
    "build:ts": "pnpm run compileReplacer && rimraf ./lib && tsc -b tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "build:cjs": "esbuild ./src/index.ts --bundle --outfile=dist/index.cjs --sourcemap --packages=external --format=cjs",
    "build:esm": "esbuild ./src/index.ts --bundle --outfile=dist/index.esm.js --sourcemap --packages=external --format=esm",
    "build:umd": "rollup dist/index.esm.js --format=umd --file=dist/core.umd.js --name=JSONSchemaForm",
    "build": "pnpm run build:ts && pnpm run build:cjs && pnpm run build:esm && pnpm run build:umd",
    "cs-check": "oxfmt --check \"{src,test}/**/*.{ts,tsx,js,jsx}\"",
    "cs-format": "oxfmt \"{src,test}/**/*.{ts,tsx,js,jsx}\"",
    "lint": "oxlint src test",
    "precommit": "lint-staged",
    "publish-to-npm": "pnpm run build && pnpm publish",
    "test": "vitest run",
    "test:debug": "node --inspect-brk ../../node_modules/.bin/jest",
    "test:update": "vitest run --update",
    "test:watch": "vitest",
    "test-coverage": "vitest run --coverage"
  }
}