{
  "name": "@rjsf/semantic-ui",
  "version": "6.7.1",
  "main": "dist/index.js",
  "module": "lib/index.js",
  "typings": "lib/index.d.ts",
  "type": "module",
  "description": "Semantic UI theme, fields and widgets for react-jsonschema-form",
  "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"
  },
  "lint-staged": {
    "{src,test}/**/*.ts(x)": [
      "oxlint --fix",
      "oxfmt"
    ]
  },
  "peerDependencies": {
    "react": ">=18",
    "semantic-ui-react": "^2.1.3",
    "@rjsf/core": "^6.7.1",
    "@rjsf/utils": "^6.7.1"
  },
  "devDependencies": {
    "atob": "^2.1.2",
    "semantic-ui-react": "^2.1.5",
    "@rjsf/snapshot-tests": "^6.7.1",
    "@rjsf/core": "^6.7.1",
    "@rjsf/validator-ajv8": "^6.7.1",
    "@rjsf/utils": "^6.7.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "author": "Jacques Nel <jacqueswho@gmail.com>",
  "contributors": [
    "Heath Chiavettone <heath.chiavettone@freenome.com"
  ],
  "keywords": [
    "Semantic UI",
    "react-jsonschema-form",
    "jsonschema",
    "json-schema",
    "json",
    "schema",
    "form",
    "react",
    "semantic-ui",
    "rjsf-semantic-ui"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/rjsf-team/react-jsonschema-form.git"
  },
  "license": "Apache-2.0",
  "dependencies": {
    "@fluentui/react-component-ref": "^0.63.1",
    "lodash": "^4.18.1",
    "semantic-ui-css": "^2.5.0"
  },
  "scripts": {
    "build:ts": "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/semantic-ui.esm.js --sourcemap --packages=external --format=esm",
    "build:umd": "rollup dist/semantic-ui.esm.js --format=umd --file=dist/semantic-ui.umd.js --name=@rjsf/semantic-ui",
    "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}\"",
    "cs-format": "oxfmt \"{src,test}/**/*.{ts,tsx}\"",
    "lint": "oxlint src test",
    "precommit": "lint-staged",
    "test": "vitest run",
    "test:update": "vitest run --update"
  }
}