{
  "name": "@jsonforms/core",
  "version": "3.7.0",
  "description": "Core module of JSON Forms",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/eclipsesource/jsonforms.git",
    "directory": "packages/core"
  },
  "bugs": "https://github.com/eclipsesource/jsonforms/issues",
  "homepage": "http://jsonforms.io/",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "directories": {
    "src": "src",
    "test": "test"
  },
  "files": [
    "lib",
    "src"
  ],
  "keywords": [
    "form",
    "forms",
    "json",
    "jsonforms",
    "frontend",
    "generator",
    "input",
    "validation",
    "renderengine",
    "jsonschema",
    "schema",
    "uischema",
    "layout",
    "customization"
  ],
  "main": "lib/jsonforms-core.cjs.js",
  "module": "lib/jsonforms-core.esm.js",
  "typings": "./lib/index.d.ts",
  "ava": {
    "files": [
      "test/**/*"
    ],
    "extensions": [
      "ts"
    ],
    "require": [
      "./test-config/ts-node.config.js"
    ]
  },
  "nyc": {
    "reporter": [
      "lcov",
      "text-summary"
    ]
  },
  "dependencies": {
    "@types/json-schema": "^7.0.3",
    "ajv": "^8.6.1",
    "ajv-formats": "^2.1.0",
    "lodash": "^4.17.21"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/redux-mock-store": "^1.0.1",
    "@typescript-eslint/eslint-plugin": "^5.54.1",
    "@typescript-eslint/parser": "^5.54.1",
    "ava": "^6.1.2",
    "document-register-element": "^1.14.3",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^8.7.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-prettier": "^4.2.1",
    "jsdom": "^27.2.0",
    "nyc": "^15.1.0",
    "prettier": "^2.8.4",
    "redux": "^4.0.4",
    "redux-mock-store": "1.5.3",
    "rimraf": "^6.1.0",
    "rollup": "^2.78.0",
    "rollup-plugin-cleanup": "^3.2.1",
    "rollup-plugin-typescript2": "^0.34.1",
    "rollup-plugin-visualizer": "^5.4.1",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.4.0",
    "tslib": "^2.5.0",
    "typedoc": "~0.25.3",
    "typescript": "~5.5.0"
  },
  "scripts": {
    "build": "rollup -c rollup.config.js",
    "clean": "rimraf -rf lib coverage dist .nyc_output 2> /dev/null",
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "report": "nyc report --reporter=html",
    "test": "ava",
    "test-cov": "rimraf -rf .nyc_output && nyc ava",
    "doc": "typedoc --name 'JSON Forms Core' --excludeExternals --out docs src"
  }
}