fix: incorrect type imports (#9308)
All checks were successful
Tests / test (push) Successful in 4m39s

This commit is contained in:
Marcel Mraz 2025-03-27 12:00:12 +01:00 committed by GitHub
parent 432a46ef9e
commit 0cd5a259ae
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 45 additions and 34 deletions

View file

@ -2,18 +2,18 @@
"name": "@excalidraw/common",
"version": "0.1.0",
"type": "module",
"types": "./dist/types/common/index.d.ts",
"types": "./dist/types/common/src/index.d.ts",
"main": "./dist/prod/index.js",
"module": "./dist/prod/index.js",
"exports": {
".": {
"types": "./dist/types/common/index.d.ts",
"types": "./dist/types/common/src/index.d.ts",
"development": "./dist/dev/index.js",
"production": "./dist/prod/index.js",
"default": "./dist/prod/index.js"
},
"./*": {
"types": "./../common/dist/types/common/*"
"types": "./../common/dist/types/common/src/*.d.ts"
}
},
"files": [
@ -47,15 +47,6 @@
"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": {