2
0

package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@excalidraw/utils",
  3. "version": "0.1.2",
  4. "type": "module",
  5. "types": "./dist/types/utils/src/index.d.ts",
  6. "main": "./dist/prod/index.js",
  7. "module": "./dist/prod/index.js",
  8. "exports": {
  9. ".": {
  10. "types": "./dist/types/utils/src/index.d.ts",
  11. "development": "./dist/dev/index.js",
  12. "production": "./dist/prod/index.js",
  13. "default": "./dist/prod/index.js"
  14. },
  15. "./*": {
  16. "types": "./../utils/dist/types/utils/src/*.d.ts"
  17. }
  18. },
  19. "files": [
  20. "dist/*"
  21. ],
  22. "description": "Excalidraw utility functions",
  23. "publishConfig": {
  24. "access": "public"
  25. },
  26. "license": "MIT",
  27. "keywords": [
  28. "excalidraw",
  29. "excalidraw-utils"
  30. ],
  31. "browserslist": {
  32. "production": [
  33. ">0.2%",
  34. "not dead",
  35. "not ie <= 11",
  36. "not op_mini all",
  37. "not safari < 12",
  38. "not kaios <= 2.5",
  39. "not edge < 79",
  40. "not chrome < 70",
  41. "not and_uc < 13",
  42. "not samsung < 10"
  43. ],
  44. "development": [
  45. "last 1 chrome version",
  46. "last 1 firefox version",
  47. "last 1 safari version"
  48. ]
  49. },
  50. "dependencies": {
  51. "@braintree/sanitize-url": "6.0.2",
  52. "@excalidraw/laser-pointer": "1.3.1",
  53. "browser-fs-access": "0.29.1",
  54. "open-color": "1.9.1",
  55. "pako": "2.0.3",
  56. "perfect-freehand": "1.2.0",
  57. "png-chunk-text": "1.0.0",
  58. "png-chunks-encode": "1.0.0",
  59. "png-chunks-extract": "1.0.0",
  60. "roughjs": "4.6.4"
  61. },
  62. "devDependencies": {
  63. "cross-env": "7.0.3",
  64. "fonteditor-core": "2.4.0",
  65. "typescript": "4.9.4",
  66. "wawoff2": "2.0.1",
  67. "which": "4.0.0"
  68. },
  69. "bugs": "https://github.com/excalidraw/excalidraw/issues",
  70. "repository": "https://github.com/excalidraw/excalidraw",
  71. "scripts": {
  72. "gen:types": "rimraf types && tsc",
  73. "build:esm": "rimraf dist && node ../../scripts/buildUtils.js && yarn gen:types"
  74. }
  75. }