123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "@excalidraw/utils",
- "version": "0.1.2",
- "type": "module",
- "types": "./dist/types/utils/src/index.d.ts",
- "main": "./dist/prod/index.js",
- "module": "./dist/prod/index.js",
- "exports": {
- ".": {
- "types": "./dist/types/utils/src/index.d.ts",
- "development": "./dist/dev/index.js",
- "production": "./dist/prod/index.js",
- "default": "./dist/prod/index.js"
- },
- "./*": {
- "types": "./../utils/dist/types/utils/src/*.d.ts"
- }
- },
- "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": "rimraf types && tsc",
- "build:esm": "rimraf dist && node ../../scripts/buildUtils.js && yarn gen:types"
- }
- }
|