{
  "name": "schema-finder",
  "version": "0.2.12",
  "description": "A simple React component for viewing and exploring a JSONSchema",
  "keywords": [
    "JSONSchema",
    "React"
  ],
  "homepage": "https://github.com/jamesbohacek/schema-finder#readme",
  "bugs": {
    "url": "https://github.com/jamesbohacek/schema-finder/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jamesbohacek/schema-finder.git"
  },
  "license": "Unlicense",
  "author": "jakub.bohacek <jamesbohacek@outlook.com>",
  "main": "dist/index.js",
  "devDependencies": {
    "@types/json-schema": "^7.0.9",
    "@types/styled-components": "^5.1.19",
    "esbuild": "^0.14.10",
    "prettier": "^2.5.1",
    "react": "^16.8.0",
    "react-dom": "^16.8.0",
    "styled-components": "^4.0.0",
    "typescript": "^4.5.4"
  },
  "peerDependencies": {
    "react": "^16.8.0 || ^17.0.0",
    "react-dom": "^16.8.0 || ^17.0.0",
    "styled-components": "^4.0.0 || ^5.0.0"
  },
  "scripts": {
    "build": "pnpm clear && node ./build.mjs & pnpm tsc",
    "dev": "pnpm clear && node ./build.mjs -watch",
    "clear": "rm -rf dist",
    "tsc": "tsc --pretty --project tsconfig.json",
    "release": "pnpm build && pnpm publish --dry-run && read -p 'Publish? [y/N]' prompt && echo $prompt | grep -q '[yY]' && pnpm publish"
  }
}