mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
Bumps the npm_and_yarn group with 2 updates in the / directory: [axios](https://github.com/axios/axios) and [tsup](https://github.com/egoist/tsup). Bumps the npm_and_yarn group with 1 update in the /live directory: [tsup](https://github.com/egoist/tsup). Bumps the npm_and_yarn group with 1 update in the /packages/editor directory: [tsup](https://github.com/egoist/tsup). Bumps the npm_and_yarn group with 1 update in the /packages/hooks directory: [tsup](https://github.com/egoist/tsup). Bumps the npm_and_yarn group with 1 update in the /packages/ui directory: [tsup](https://github.com/egoist/tsup). Bumps the npm_and_yarn group with 1 update in the /packages/utils directory: [tsup](https://github.com/egoist/tsup). Updates `axios` from 1.7.9 to 1.8.2 - [Release notes](https://github.com/axios/axios/releases) - [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md) - [Commits](https://github.com/axios/axios/compare/v1.7.9...v1.8.2) Updates `tsup` from 7.3.0 to 8.3.5 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) Updates `tsup` from 7.3.0 to 8.4.0 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) Updates `tsup` from 7.3.0 to 8.4.0 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) Updates `tsup` from 7.3.0 to 8.4.0 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) Updates `tsup` from 7.3.0 to 8.4.0 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) Updates `tsup` from 7.3.0 to 8.4.0 - [Release notes](https://github.com/egoist/tsup/releases) - [Commits](https://github.com/egoist/tsup/compare/v7.3.0...v8.3.5) --- updated-dependencies: - dependency-name: axios dependency-type: direct:production dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn - dependency-name: tsup dependency-type: direct:development dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
95 lines
2.6 KiB
JSON
95 lines
2.6 KiB
JSON
{
|
|
"name": "@plane/editor",
|
|
"version": "0.25.2",
|
|
"description": "Core Editor that powers Plane",
|
|
"license": "AGPL-3.0",
|
|
"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"
|
|
},
|
|
"./lib": {
|
|
"require": "./dist/lib.js",
|
|
"types": "./dist/lib.d.mts",
|
|
"import": "./dist/lib.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup --minify",
|
|
"dev": "tsup --watch",
|
|
"check-types": "tsc --noEmit",
|
|
"lint": "eslint src --ext .ts,.tsx",
|
|
"lint:errors": "eslint src --ext .ts,.tsx --quiet",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\""
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^18.3.1",
|
|
"react-dom": "18.3.1"
|
|
},
|
|
"dependencies": {
|
|
"@floating-ui/react": "^0.26.4",
|
|
"@hocuspocus/provider": "^2.15.0",
|
|
"@plane/types": "*",
|
|
"@plane/ui": "*",
|
|
"@plane/utils": "*",
|
|
"@tiptap/core": "2.10.4",
|
|
"@tiptap/extension-blockquote": "2.10.4",
|
|
"@tiptap/extension-character-count": "2.11.0",
|
|
"@tiptap/extension-collaboration": "2.11.0",
|
|
"@tiptap/extension-image": "2.11.0",
|
|
"@tiptap/extension-list-item": "2.11.0",
|
|
"@tiptap/extension-mention": "2.11.0",
|
|
"@tiptap/extension-placeholder": "2.11.0",
|
|
"@tiptap/extension-task-item": "2.11.0",
|
|
"@tiptap/extension-task-list": "2.11.0",
|
|
"@tiptap/extension-text-align": "2.11.0",
|
|
"@tiptap/extension-text-style": "2.11.0",
|
|
"@tiptap/extension-underline": "2.11.0",
|
|
"@tiptap/html": "2.11.0",
|
|
"@tiptap/pm": "2.11.0",
|
|
"@tiptap/react": "2.11.0",
|
|
"@tiptap/starter-kit": "2.11.0",
|
|
"@tiptap/suggestion": "2.11.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"highlight.js": "^11.8.0",
|
|
"jsx-dom-cjs": "^8.0.3",
|
|
"linkifyjs": "^4.1.3",
|
|
"lowlight": "^3.0.0",
|
|
"lucide-react": "^0.469.0",
|
|
"prosemirror-codemark": "^0.4.2",
|
|
"prosemirror-utils": "^1.2.2",
|
|
"tippy.js": "^6.3.7",
|
|
"tiptap-markdown": "^0.8.10",
|
|
"uuid": "^10.0.0",
|
|
"y-indexeddb": "^9.0.12",
|
|
"y-prosemirror": "^1.2.15",
|
|
"y-protocols": "^1.0.6",
|
|
"yjs": "^13.6.20"
|
|
},
|
|
"devDependencies": {
|
|
"@plane/eslint-config": "*",
|
|
"@plane/tailwind-config": "*",
|
|
"@plane/typescript-config": "*",
|
|
"@types/node": "18.15.3",
|
|
"@types/react": "^18.3.11",
|
|
"@types/react-dom": "^18.2.18",
|
|
"postcss": "^8.4.38",
|
|
"tsup": "^8.4.0",
|
|
"typescript": "5.3.3"
|
|
},
|
|
"keywords": [
|
|
"editor",
|
|
"rich-text",
|
|
"markdown",
|
|
"nextjs",
|
|
"react"
|
|
]
|
|
}
|