* refactor: mobile-editor * refactor: `packages/core` params * refactor: editor wrappers * chore: updated the readme * chore: exposed attachment onClick method * chore: updated props * chore: renamed extended mark attribute function * chore: added focus props to editor-wrapper * fix: merge conflicts * chore: removed old isTouchDevice references * fix: types and tsconfig * chore: pnpm migration * fix: code review * chore: updated attachment style class * refactor: collaborative document extended props * chore: props rearrangement * fix: build errors and code splitting * fix: additional rich text extension props * fix: code formatting * fix: editor formatting * fix: code review * chore: pass missing prop * fix: build errors --------- Co-authored-by: Aaryan Khandelwal <[email protected]>
44 lines
1.3 KiB
JSON
44 lines
1.3 KiB
JSON
{
|
|
"name": "@plane/mobile-editor",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"lint-mobile": "eslint .",
|
|
"preview": "vite preview",
|
|
"clean": "rm -rf .turbo && rm -rf .next && rm -rf node_modules && rm -rf dist",
|
|
"check:lint-mobile": "eslint . --max-warnings 28",
|
|
"check:types-mobile": "tsc --noEmit",
|
|
"check:format-mobile": "prettier --check \"**/*.{ts,tsx,md,json,css,scss}\"",
|
|
"fix:lint-mobile": "eslint . --fix",
|
|
"fix:format-mobile": "prettier --write \"**/*.{ts,tsx,md,json,css,scss}\""
|
|
},
|
|
"dependencies": {
|
|
"@plane/constants": "workspace:*",
|
|
"@plane/editor": "workspace:*",
|
|
"@plane/ui": "workspace:*",
|
|
"@plane/utils": "workspace:*",
|
|
"@plane/propel": "workspace:*",
|
|
"lucide-react": "^0.454.0",
|
|
"lodash": "^4.17.21",
|
|
"mobx": "^6.10.0",
|
|
"mobx-react": "^9.1.1",
|
|
"mobx-utils": "^6.0.8",
|
|
"next-themes": "^0.2.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "workspace:*",
|
|
"@plane/tailwind-config": "workspace:*",
|
|
"@plane/types": "workspace:*",
|
|
"@types/lodash": "^4.17.6",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"globals": "^15.9.0",
|
|
"vite": "catalog:",
|
|
"vite-plugin-node-polyfills": "^0.22.0"
|
|
}
|
|
}
|