forked from github/plane
380b00c1a2
* fix: upgrading next package and removed unused deps * chore: unused variable removed * chore: next image icon fix * chore: unused component removed * chore: next image icon fix * chore: replace use-debounce with lodash debounce * chore: unused component removed * resolved: fixed issue with next link component * fix: updates in next config * fix: updating types pages --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "@plane/lite-text-editor",
|
|
"version": "0.1.0",
|
|
"description": "Package that powers Plane's Comment Editor",
|
|
"private": true,
|
|
"main": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.mts",
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"import": "./dist/index.mjs",
|
|
"module": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"check-types": "tsc --noEmit",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\""
|
|
},
|
|
"peerDependencies": {
|
|
"next": "12.3.2",
|
|
"next-themes": "^0.2.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"dependencies": {
|
|
"@plane/editor-core": "*",
|
|
"@plane/ui": "*",
|
|
"@plane/editor-types": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "18.15.3",
|
|
"@types/react": "^18.2.39",
|
|
"@types/react-dom": "^18.2.14",
|
|
"eslint": "^7.32.0",
|
|
"postcss": "^8.4.29",
|
|
"tailwind-config-custom": "*",
|
|
"eslint-config-custom": "*",
|
|
"tsconfig": "*",
|
|
"tsup": "^7.2.0",
|
|
"typescript": "4.9.5"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"rich-text",
|
|
"markdown",
|
|
"nextjs",
|
|
"react"
|
|
]
|
|
}
|