package.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "@excalidraw/math",
  3. "version": "0.18.0",
  4. "type": "module",
  5. "types": "./dist/types/math/src/index.d.ts",
  6. "main": "./dist/prod/index.js",
  7. "module": "./dist/prod/index.js",
  8. "exports": {
  9. ".": {
  10. "types": "./dist/types/math/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": "./dist/types/math/src/*.d.ts",
  17. "development": "./dist/dev/index.js",
  18. "production": "./dist/prod/index.js",
  19. "default": "./dist/prod/index.js"
  20. }
  21. },
  22. "files": [
  23. "dist/*"
  24. ],
  25. "description": "Excalidraw math functions",
  26. "publishConfig": {
  27. "access": "public"
  28. },
  29. "license": "MIT",
  30. "keywords": [
  31. "excalidraw",
  32. "excalidraw-math",
  33. "math",
  34. "vector",
  35. "algebra",
  36. "2d"
  37. ],
  38. "browserslist": {
  39. "production": [
  40. ">0.2%",
  41. "not dead",
  42. "not ie <= 11",
  43. "not op_mini all",
  44. "not safari < 12",
  45. "not kaios <= 2.5",
  46. "not edge < 79",
  47. "not chrome < 70",
  48. "not and_uc < 13",
  49. "not samsung < 10"
  50. ],
  51. "development": [
  52. "last 1 chrome version",
  53. "last 1 firefox version",
  54. "last 1 safari version"
  55. ]
  56. },
  57. "bugs": "https://github.com/excalidraw/excalidraw/issues",
  58. "repository": "https://github.com/excalidraw/excalidraw",
  59. "scripts": {
  60. "gen:types": "rimraf types && tsc",
  61. "build:esm": "rimraf dist && node ../../scripts/buildBase.js && yarn gen:types"
  62. },
  63. "dependencies": {
  64. "@excalidraw/common": "0.18.0"
  65. }
  66. }