{
  "name": "rhino-editor",
  "version": "0.16.6",
  "description": "A custom element wrapped rich text editor",
  "type": "module",
  "main": "exports/index.js",
  "module": "exports/index.js",
  "files": [
    "exports",
    "internal",
    "cdn",
    "types.d.ts",
    "custom-elements.json"
  ],
  "exports": {
    ".": "./exports/index.js",
    "./exports/*": "./exports/*",
    "./cdn/*": "./cdn/*"
  },
  "keywords": [
    "tiptap",
    "prosemirror",
    "richtext",
    "editor",
    "wysiwg",
    "webcomponents"
  ],
  "devDependencies": {
    "@changesets/changelog-github": "^0.5.0",
    "@changesets/cli": "^2.27.8",
    "@custom-elements-manifest/analyzer": "^0.10.3",
    "@esm-bundle/chai": "4.3.4-fix.0",
    "@open-wc/testing": "^3.2.2",
    "@playwright/test": "^1.48.2",
    "@types/mocha": "^10.0.9",
    "@types/rails__activestorage": "^7.1.1",
    "@typescript-eslint/parser": "^6.21.0",
    "@web/dev-server": "^0.3.7",
    "@web/dev-server-esbuild": "^0.4.4",
    "@web/test-runner": "^0.19.0",
    "@web/test-runner-commands": "^0.9.0",
    "@web/test-runner-playwright": "^0.11.0",
    "chalk": "^5.3.0",
    "concurrently": "^8.2.2",
    "esbuild": "^0.24.0",
    "eslint": "^8.57.1",
    "glob": "^10.4.5",
    "mocha": "^10.7.3",
    "playwright": "^1.48.2",
    "prettier": "^3.3.3",
    "rhino-editor": "link:",
    "sinon": "^15.2.0",
    "standard-version": "^9.5.0",
    "typescript": "^5.6.2"
  },
  "dependencies": {
    "@rails/activestorage": "^7.2.102",
    "@tiptap/core": "^2.9.1",
    "@tiptap/extension-code": "^2.9.1",
    "@tiptap/extension-code-block": "^2.9.1",
    "@tiptap/extension-focus": "^2.9.1",
    "@tiptap/extension-image": "^2.9.1",
    "@tiptap/extension-link": "^2.9.1",
    "@tiptap/extension-placeholder": "^2.9.1",
    "@tiptap/extension-strike": "^2.9.1",
    "@tiptap/pm": "^2.9.1",
    "@tiptap/starter-kit": "^2.9.1",
    "linkifyjs": "^4.1.3",
    "lit": "^3.2.0",
    "prosemirror-codemark": "^0.4.2",
    "prosemirror-utils": "^1.2.2",
    "role-components": "^3.1.0",
    "prosemirror-view": "^1.0.0",
    "tslib": "^2.8.0"
  },
  "repository": "git@github.com:KonnorRogers/rhino-editor.git",
  "bugs": {
    "url": "https://github.com/KonnorRogers/rhino-editor/issues"
  },
  "homepage": "https://github.com/KonnorRogers/rhino-editor",
  "author": "KonnorRogers <konnor5456@gmail.com>",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "customElements": "custom-elements.json",
  "scripts": {
    "setup": "pnpm install && pnpm exec playwright install --with-deps && cd tests/rails && pnpm install && pnpm exec playwright install --with-deps && bundle install && cd - && cd docs && bundle install && pnpm install",
    "setup:docs": "pnpm install && pnpm run build && cd docs && bundle install && pnpm install",
    "build": "rm -rf {cdn,internal,exports} && pnpm build:types && node esbuild.config.js",
    "build:types": "tsc && tsc --declarationDir ./cdn",
    "lint": "prettier --check ./src",
    "fix": "prettier --write ./src",
    "test": "concurrently --names \"RAILS,DOCS,UNIT\" -c \"red,green,blue\" \"pnpm run test:rails\" \"pnpm run test:docs\" \"pnpm run test:unit\"",
    "test:rails": "cd tests/rails && bundle exec rails test:all",
    "test:unit": "web-test-runner",
    "test:docs": "playwright test",
    "start": "pnpm build -- --watch",
    "start:docs": "cd docs && overmind start -f Procfile.dev",
    "start:rails": "cd tests/rails && overmind start -f Procfile.dev",
    "release": "pnpm run build && changeset version && changeset publish && git push --follow-tags",
    "changeset": "changeset"
  }
}