022dabff905d4ab9daebb2f516fb0680d612135cd8ca15d3d36173cd6796716eb6ebbafeb4966e9e5c2ba2b7d85f607dea4197d06355f37588f69dc5716264 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "parchment",
  3. "version": "3.0.0",
  4. "description": "A document model for rich text editors",
  5. "author": "Jason Chen <jhchen7@gmail.com>",
  6. "homepage": "http://quilljs.com/docs/parchment",
  7. "main": "./dist/parchment.js",
  8. "types": "./dist/parchment.d.ts",
  9. "type": "module",
  10. "sideEffects": false,
  11. "files": [
  12. "tsconfig.json",
  13. "dist",
  14. "src"
  15. ],
  16. "devDependencies": {
  17. "@arethetypeswrong/cli": "^0.15.1",
  18. "@microsoft/api-extractor": "^7.42.3",
  19. "@types/node": "^18.15.11",
  20. "@typescript-eslint/eslint-plugin": "^7.2.0",
  21. "@typescript-eslint/parser": "^7.2.0",
  22. "@vitest/browser": "^1.4.0",
  23. "del-cli": "^5.1.0",
  24. "eslint": "^8.46.0",
  25. "eslint-config-prettier": "^9.1.0",
  26. "eslint-plugin-prettier": "^5.1.3",
  27. "eslint-plugin-require-extensions": "^0.1.3",
  28. "eslint-plugin-tree-shaking": "^1.12.1",
  29. "playwright": "1.42.1",
  30. "prettier": "^3.2.5",
  31. "typescript": "^5.4.2",
  32. "vite": "^5.1.6",
  33. "vitest": "^1.4.0"
  34. },
  35. "prettier": {
  36. "singleQuote": true
  37. },
  38. "license": "BSD-3-Clause",
  39. "repository": "github:quilljs/parchment",
  40. "scripts": {
  41. "build": "npm run build:bundle && npm run build:types",
  42. "build:bundle": "vite build",
  43. "build:types": "tsc --emitDeclarationOnly && api-extractor run && del-cli dist/typings",
  44. "lint": "eslint 'src/**/*.ts' 'tests/**/*.ts'",
  45. "prepare": "npm run build",
  46. "test": "npm run test:unit",
  47. "test:unit": "vitest --typecheck",
  48. "test:pkg": "attw $(npm pack)"
  49. },
  50. "bugs": {
  51. "url": "https://github.com/quilljs/parchment/issues"
  52. }
  53. }