* fix: svg not supported in image uploads * fix: svg image file error message fixed * feat: add custom image node for uploads * fix: combine two extensions * fix: added new image extension to backend * fix: type errors * style: image drop node * style: image resize handler * fix: removed unused stuff * fix: types of updateAttributes * fix: image insertion at pos and loading effect added * fix: resize image real time sync * fix: drag drop menu * feat: custom image component editor * fix: reverted back styles * fix: reverted back document info changes * fix: css image css * style: image selected and hover states * refactor: custom image extension folder structure * style: read-only image * chore: remove file handler * fix: fixed multi time file opener * fix: editor readonly content set properly * fix: old images not rendered as new ones * fix: drop upload fixed * chore: remove console logs * fix: src of image node as dependency * fix: helper library build fix * fix: improved reflow/layout and fixed resizing --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
24 lines
560 B
JSON
24 lines
560 B
JSON
{
|
|
"name": "@plane/helpers",
|
|
"version": "0.22.0",
|
|
"description": "Helper functions shared across multiple apps internally",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup ./index.ts --format esm,cjs --dts --external react --minify"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.5.4",
|
|
"@types/react": "^18.3.5",
|
|
"typescript": "^5.6.2",
|
|
"tsup": "^7.2.0"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.3.1"
|
|
}
|
|
}
|