Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions packages/secretnote-lite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,24 +21,21 @@
"pb": "pnpm publish --no-git-checks --filter @secretflow/secretnote-lite"
},
"dependencies": {
"@aarkue/tiptap-math-extension": "^1.3.3",
"@antv/s2": "^1.52.0",
"@difizen/mana-app": "0.1.23",
"@difizen/mana-common": "0.1.23",
"@difizen/mana-l10n": "0.1.23",
"@difizen/mana-react": "0.1.23",
"@difizen/libro-jupyter": "0.2.24",
"@difizen/libro-language-client": "0.2.24",
"@difizen/libro-code-cell": "0.2.24",
"@difizen/libro-code-editor": "0.2.24",
"@difizen/libro-codemirror": "0.2.24",
"@difizen/libro-cofine-editor": "0.2.24",
"@difizen/libro-cofine-editor-core": "0.2.24",
"@difizen/libro-cofine-editor-contribution": "0.2.24",
"@difizen/libro-cofine-editor-core": "0.2.24",
"@difizen/libro-cofine-textmate": "0.2.24",
"@difizen/libro-common": "0.2.24",
"@difizen/libro-core": "0.2.24",
"@difizen/libro-jupyter": "0.2.24",
"@difizen/libro-kernel": "0.2.24",
"@difizen/libro-l10n": "0.2.24",
"@difizen/libro-language-client": "0.2.24",
"@difizen/libro-lsp": "0.2.24",
"@difizen/libro-markdown": "0.2.24",
"@difizen/libro-markdown-cell": "0.2.24",
Expand All @@ -49,6 +46,10 @@
"@difizen/libro-search-code-cell": "0.2.24",
"@difizen/libro-shared-model": "0.2.24",
"@difizen/libro-virtualized": "0.2.24",
"@difizen/mana-app": "0.1.23",
"@difizen/mana-common": "0.1.23",
"@difizen/mana-l10n": "0.1.23",
"@difizen/mana-react": "0.1.23",
"@kanaries/web-data-loader": "^0.1.7",
"@lumino/polling": "^2.1.3",
"@tiptap/core": "^2.1.11",
Expand All @@ -70,6 +71,7 @@
"classnames": "^2.3.2",
"d3-dsv": "^3.0.1",
"highlight.js": "^11.9.0",
"katex": "^0.16.11",
"lodash-es": "^4.17.21",
"lucide-react": "^0.284.0",
"markdown-it": "^14.1.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import TiptapUnderline from '@tiptap/extension-underline';
import { StarterKit } from '@tiptap/starter-kit';
import { Markdown } from 'tiptap-markdown';
import SlashCommand from './slash-command';
import { MathExtension } from '@aarkue/tiptap-math-extension';

export const defaultExtensions = [
StarterKit.configure({
Expand Down Expand Up @@ -115,4 +116,5 @@ export const defaultExtensions = [
html: true,
transformCopiedText: true,
}),
MathExtension,
];
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import React from 'react';
import { EditorBubbleMenu } from './bubble-menu';
import { defaultExtensions } from './extensions';
import './index.less';
import 'katex/dist/katex.min.css';

function Editor({
defaultValue = '',
Expand Down
29 changes: 26 additions & 3 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading