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