summaryrefslogtreecommitdiffstats
path: root/packages/utils/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/utils/package.json')
-rw-r--r--packages/utils/package.json75
1 files changed, 75 insertions, 0 deletions
diff --git a/packages/utils/package.json b/packages/utils/package.json
new file mode 100644
index 0000000..ddda1e7
--- /dev/null
+++ b/packages/utils/package.json
@@ -0,0 +1,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"
+ }
+}