This PR - Introduces multiline markdown transformers / mdx support - Introduce `shouldMergeAdjacentLines` option in `$convertFromMarkdownString`. If true, merges adjacent lines as per commonmark spec. This would allow to close: https://github.com/payloadcms/payload/issues/8049 - Many new features and bug fixes! - Ports over changes from the lexical playground. Most notably: - add support for enabling table row stripping - make table resizing & table cell selection more reliable **BREAKING**: This upgrades lexical from 0.17.0 to 0.18.0. If you have any lexical packages installed in your project, please update them accordingly. Additionally, if you depend on the lexical APIs, please consult their changelog, as lexical may introduce breaking changes: https://github.com/facebook/lexical/releases/tag/v0.18.0 --------- Co-authored-by: Alessio Gravili <alessio@gravili.de>
87 lines
3.2 KiB
JSON
87 lines
3.2 KiB
JSON
{
|
|
"name": "@payloadcms/template-website",
|
|
"version": "1.0.0",
|
|
"description": "Website template for Payload",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "cross-env NODE_OPTIONS=--no-deprecation next build",
|
|
"dev": "cross-env NODE_OPTIONS=--no-deprecation next dev",
|
|
"dev:prod": "cross-env NODE_OPTIONS=--no-deprecation rm -rf .next && pnpm build && pnpm start",
|
|
"generate:importmap": "cross-env NODE_OPTIONS=--no-deprecation payload generate:importmap",
|
|
"generate:types": "cross-env NODE_OPTIONS=--no-deprecation payload generate:types",
|
|
"ii": "cross-env NODE_OPTIONS=--no-deprecation pnpm --ignore-workspace install",
|
|
"lint": "cross-env NODE_OPTIONS=--no-deprecation next lint",
|
|
"lint:fix": "cross-env NODE_OPTIONS=--no-deprecation next lint --fix",
|
|
"payload": "cross-env NODE_OPTIONS=--no-deprecation payload",
|
|
"reinstall": "cross-env NODE_OPTIONS=--no-deprecation rm -rf node_modules && rm pnpm-lock.yaml && pnpm --ignore-workspace install",
|
|
"start": "cross-env NODE_OPTIONS=--no-deprecation next start"
|
|
},
|
|
"dependencies": {
|
|
"@payloadcms/db-mongodb": "beta",
|
|
"@payloadcms/live-preview-react": "beta",
|
|
"@payloadcms/next": "beta",
|
|
"@payloadcms/plugin-cloud": "beta",
|
|
"@payloadcms/plugin-form-builder": "beta",
|
|
"@payloadcms/plugin-nested-docs": "beta",
|
|
"@payloadcms/plugin-redirects": "beta",
|
|
"@payloadcms/plugin-search": "beta",
|
|
"@payloadcms/plugin-seo": "beta",
|
|
"@payloadcms/richtext-lexical": "beta",
|
|
"@payloadcms/ui": "beta",
|
|
"@radix-ui/react-checkbox": "^1.0.4",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.1",
|
|
"cross-env": "^7.0.3",
|
|
"geist": "^1.3.0",
|
|
"graphql": "^16.8.2",
|
|
"jsonwebtoken": "9.0.2",
|
|
"lexical": "0.18.0",
|
|
"lucide-react": "^0.378.0",
|
|
"next": "15.0.0-canary.160",
|
|
"payload": "beta",
|
|
"payload-admin-bar": "^1.0.6",
|
|
"prism-react-renderer": "^2.3.1",
|
|
"react": "19.0.0-rc-5dcb0097-20240918",
|
|
"react-dom": "19.0.0-rc-5dcb0097-20240918",
|
|
"react-hook-form": "7.45.4",
|
|
"sharp": "0.32.6",
|
|
"tailwind-merge": "^2.3.0",
|
|
"tailwindcss-animate": "^1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@next/eslint-plugin-next": "^13.1.6",
|
|
"@payloadcms/eslint-config": "^1.1.1",
|
|
"@tailwindcss/typography": "^0.5.13",
|
|
"@types/escape-html": "^1.0.2",
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
"@types/node": "22.5.4",
|
|
"@types/react": "npm:types-react@19.0.0-rc.1",
|
|
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "15.0.0-canary.160",
|
|
"postcss": "^8.4.38",
|
|
"prettier": "^3.0.3",
|
|
"tailwindcss": "^3.4.3",
|
|
"typescript": "5.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "^18.20.2 || >=20.9.0"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"@types/react": "npm:types-react@19.0.0-rc.1",
|
|
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
|
|
}
|
|
},
|
|
"overrides": {
|
|
"@types/react": "npm:types-react@19.0.0-rc.1",
|
|
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
|
|
}
|
|
}
|