mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Some checks failed
Auto release excalidraw next / Auto-release-excalidraw-next (push) Failing after 2m36s
Build Docker image / build-docker (push) Failing after 6s
Cancel previous runs / cancel (push) Failing after 1s
Publish Docker / publish-docker (push) Failing after 31s
New Sentry production release / sentry (push) Failing after 2m3s
65 lines
1.5 KiB
JSON
65 lines
1.5 KiB
JSON
{
|
|
"name": "@excalidraw/common",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"types": "./dist/types/common/index.d.ts",
|
|
"main": "./dist/prod/index.js",
|
|
"module": "./dist/prod/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/types/common/index.d.ts",
|
|
"development": "./dist/dev/index.js",
|
|
"production": "./dist/prod/index.js",
|
|
"default": "./dist/prod/index.js"
|
|
},
|
|
"./*": {
|
|
"types": "./../common/dist/types/common/*"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/*"
|
|
],
|
|
"description": "Excalidraw common functions, constants, etc.",
|
|
"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": {
|
|
"es6-promise-pool": "2.5.0",
|
|
"nanoid": "3.3.3",
|
|
"open-color": "1.9.1",
|
|
"roughjs": "4.6.4"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "4.9.4"
|
|
},
|
|
"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/buildBase.js && yarn gen:types"
|
|
}
|
|
}
|