package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@excalidraw/utils",
  3. "version": "0.1.0",
  4. "main": "dist/excalidraw-utils.min.js",
  5. "files": [
  6. "dist/*"
  7. ],
  8. "description": "Excalidraw utilities functions",
  9. "publishConfig": {
  10. "access": "public"
  11. },
  12. "license": "MIT",
  13. "keywords": [
  14. "excalidraw",
  15. "excalidraw-utils"
  16. ],
  17. "browserslist": {
  18. "production": [
  19. ">0.2%",
  20. "not dead",
  21. "not ie <= 11",
  22. "not op_mini all",
  23. "not safari < 12",
  24. "not kaios <= 2.5",
  25. "not edge < 79",
  26. "not chrome < 70",
  27. "not and_uc < 13",
  28. "not samsung < 10"
  29. ],
  30. "development": [
  31. "last 1 chrome version",
  32. "last 1 firefox version",
  33. "last 1 safari version"
  34. ]
  35. },
  36. "devDependencies": {
  37. "@babel/core": "7.14.3",
  38. "@babel/plugin-transform-arrow-functions": "7.13.0",
  39. "@babel/plugin-transform-async-to-generator": "7.14.5",
  40. "@babel/plugin-transform-runtime": "^7.12.10",
  41. "@babel/plugin-transform-typescript": "7.14.3",
  42. "@babel/preset-env": "7.14.5",
  43. "@babel/preset-typescript": "7.13.0",
  44. "babel-loader": "8.2.2",
  45. "babel-plugin-transform-class-properties": "6.24.1",
  46. "cross-env": "7.0.3",
  47. "css-loader": "5.2.6",
  48. "file-loader": "6.2.0",
  49. "sass-loader": "11.1.1",
  50. "ts-loader": "8.1.0",
  51. "webpack": "5.38.1",
  52. "webpack-bundle-analyzer": "4.4.2",
  53. "webpack-cli": "4.7.0"
  54. },
  55. "bugs": "https://github.com/excalidraw/excalidraw/issues",
  56. "repository": "https://github.com/excalidraw/excalidraw",
  57. "scripts": {
  58. "build:umd": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js",
  59. "build:umd:withAnalyzer": "cross-env NODE_ENV=production ANALYZER=true webpack --config webpack.prod.config.js",
  60. "pack": "yarn build:umd && yarn pack"
  61. }
  62. }