package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "prosemirror-gapcursor",
  3. "version": "1.3.2",
  4. "description": "ProseMirror plugin for cursors at normally impossible-to-reach positions",
  5. "type": "module",
  6. "main": "dist/index.cjs",
  7. "module": "dist/index.js",
  8. "types": "dist/index.d.ts",
  9. "exports": {
  10. ".": {
  11. "import": "./dist/index.js",
  12. "require": "./dist/index.cjs"
  13. },
  14. "./style/gapcursor.css": "./style/gapcursor.css"
  15. },
  16. "sideEffects": ["./style/gapcursor.css"],
  17. "style": "style/gapcursor.css",
  18. "license": "MIT",
  19. "maintainers": [
  20. {
  21. "name": "Marijn Haverbeke",
  22. "email": "marijn@haverbeke.berlin",
  23. "web": "http://marijnhaverbeke.nl"
  24. }
  25. ],
  26. "repository": {
  27. "type": "git",
  28. "url": "git://github.com/prosemirror/prosemirror-gapcursor.git"
  29. },
  30. "dependencies": {
  31. "prosemirror-keymap": "^1.0.0",
  32. "prosemirror-model": "^1.0.0",
  33. "prosemirror-state": "^1.0.0",
  34. "prosemirror-view": "^1.0.0"
  35. },
  36. "devDependencies": {
  37. "@prosemirror/buildhelper": "^0.1.5"
  38. },
  39. "scripts": {
  40. "prepare": "pm-buildhelper src/index.ts"
  41. }
  42. }