package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "quill-monorepo",
  3. "version": "2.0.0-rc.0",
  4. "description": "Quill development environment",
  5. "private": true,
  6. "author": "Jason Chen <jhchen7@gmail.com>",
  7. "homepage": "https://quilljs.com",
  8. "config": {
  9. "ports": {
  10. "webpack": "9080",
  11. "website": "9000"
  12. }
  13. },
  14. "workspaces": [
  15. "packages/*"
  16. ],
  17. "license": "BSD-3-Clause",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/quilljs/quill.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/quilljs/quill/issues"
  24. },
  25. "scripts": {
  26. "build": "run-p build:*",
  27. "build:quill": "npm run build -w quill",
  28. "build:website": "npm run build -w website",
  29. "start": "run-p start:*",
  30. "start:quill": "npm start -w quill",
  31. "start:website": "NEXT_PUBLIC_LOCAL_QUILL=true npm start -w website",
  32. "lint": "npm run lint -ws"
  33. },
  34. "keywords": [
  35. "quill",
  36. "editor",
  37. "rich text",
  38. "wysiwyg",
  39. "operational transformation",
  40. "ot",
  41. "framework"
  42. ],
  43. "engines": {
  44. "npm": ">=8.2.3"
  45. },
  46. "engineStrict": true,
  47. "devDependencies": {
  48. "npm-run-all": "^4.1.5"
  49. }
  50. }