popilot 0.7.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/scaffold/mcp-notification-server/package.json +18 -0
- package/scaffold/mcp-notification-server/src/index.ts +275 -0
- package/scaffold/mcp-notification-server/src/turso-client.ts +142 -0
- package/scaffold/mcp-notification-server/tsconfig.json +14 -0
- package/scaffold/pm-api/sql/001-memo-v2.sql +49 -0
- package/scaffold/pm-api/sql/002-notifications.sql +18 -0
- package/scaffold/pm-api/sql/003-content.sql +66 -0
- package/scaffold/pm-api/sql/004-agent-events.sql +21 -0
- package/scaffold/pm-api/sql/005-epic-sprint-decoupling.sql +6 -0
- package/scaffold/pm-api/src/utils/retro-link.ts +32 -0
- package/scaffold/spec-site/package-lock.json +852 -0
- package/scaffold/spec-site/package.json +12 -1
- package/scaffold/spec-site/src/components/AuthGate.vue +117 -0
- package/scaffold/spec-site/src/components/BurndownChart.vue +78 -0
- package/scaffold/spec-site/src/components/DocComments.vue +137 -0
- package/scaffold/spec-site/src/components/DocEditor.vue +118 -0
- package/scaffold/spec-site/src/components/DocExportBar.vue +110 -0
- package/scaffold/spec-site/src/components/DocsSidebar.vue +309 -0
- package/scaffold/spec-site/src/components/EmptyState.vue +30 -0
- package/scaffold/spec-site/src/components/ErrorBanner.vue +38 -0
- package/scaffold/spec-site/src/components/Icon.vue +58 -0
- package/scaffold/spec-site/src/components/MemoChecklist.vue +88 -0
- package/scaffold/spec-site/src/components/MemoGraph.vue +75 -0
- package/scaffold/spec-site/src/components/MemoItem.vue +353 -0
- package/scaffold/spec-site/src/components/MemoRelations.vue +101 -0
- package/scaffold/spec-site/src/components/MemoTimeline.vue +53 -0
- package/scaffold/spec-site/src/components/MentionInput.vue +174 -0
- package/scaffold/spec-site/src/components/PriorityBadge.vue +23 -0
- package/scaffold/spec-site/src/components/SlashCommand.ts +123 -0
- package/scaffold/spec-site/src/components/StateDisplay.vue +54 -0
- package/scaffold/spec-site/src/components/TreeNode.vue +82 -0
- package/scaffold/spec-site/src/components/UserAvatar.vue +24 -0
- package/scaffold/spec-site/src/composables/navTypes.ts +3 -0
- package/scaffold/spec-site/src/composables/useBottomSheet.ts +103 -0
- package/scaffold/spec-site/src/composables/useMemo.ts +39 -0
- package/scaffold/spec-site/src/composables/useTurso.ts +17 -0
- package/scaffold/spec-site/src/composables/useViewport.ts +26 -0
- package/scaffold/spec-site/src/mockup/ComponentPalette.vue +61 -0
- package/scaffold/spec-site/src/mockup/MockupCanvas.vue +459 -0
- package/scaffold/spec-site/src/mockup/PropertyPanel.vue +217 -0
- package/scaffold/spec-site/src/mockup/componentCatalog.ts +68 -0
- package/scaffold/spec-site/src/mockup/useScenarios.ts +67 -0
- package/scaffold/spec-site/src/pages/DocsEditor.vue +119 -0
- package/scaffold/spec-site/src/pages/DocsPage.vue +444 -0
- package/scaffold/spec-site/src/pages/MemosPage.vue +857 -0
- package/scaffold/spec-site/src/pages/MockupEditorPage.vue +611 -0
- package/scaffold/spec-site/src/pages/MockupListPage.vue +121 -0
- package/scaffold/spec-site/src/pages/MockupViewerPage.vue +199 -0
- package/scaffold/spec-site/src/pages/NotificationSettingsPage.vue +59 -0
- package/scaffold/spec-site/src/pages/SprintAdmin.vue +521 -0
- package/scaffold/spec-site/src/pages/SprintTimeline.vue +159 -0
- package/scaffold/spec-site/src/pages/board/KanbanBoard.vue +93 -0
- package/scaffold/spec-site/src/styles/buttons.css +124 -0
- package/scaffold/spec-site/src/utils/parseMentions.ts +56 -0
- package/scaffold/spec-site/src/utils/timezone.ts +18 -0
|
@@ -8,6 +8,17 @@
|
|
|
8
8
|
"name": "spec-site",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"dependencies": {
|
|
11
|
+
"@tiptap/core": "^2.11.0",
|
|
12
|
+
"@tiptap/extension-image": "^2.11.0",
|
|
13
|
+
"@tiptap/extension-link": "^2.11.0",
|
|
14
|
+
"@tiptap/extension-placeholder": "^2.11.0",
|
|
15
|
+
"@tiptap/extension-table": "^2.11.0",
|
|
16
|
+
"@tiptap/extension-table-cell": "^2.11.0",
|
|
17
|
+
"@tiptap/extension-table-header": "^2.11.0",
|
|
18
|
+
"@tiptap/extension-table-row": "^2.11.0",
|
|
19
|
+
"@tiptap/starter-kit": "^2.11.0",
|
|
20
|
+
"@tiptap/suggestion": "^2.11.0",
|
|
21
|
+
"@tiptap/vue-3": "^2.11.0",
|
|
11
22
|
"dompurify": "^3.2.0",
|
|
12
23
|
"lucide-vue-next": "^0.470.0",
|
|
13
24
|
"marked": "^15.0.0",
|
|
@@ -515,6 +526,22 @@
|
|
|
515
526
|
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
|
516
527
|
"license": "MIT"
|
|
517
528
|
},
|
|
529
|
+
"node_modules/@popperjs/core": {
|
|
530
|
+
"version": "2.11.8",
|
|
531
|
+
"resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz",
|
|
532
|
+
"integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==",
|
|
533
|
+
"license": "MIT",
|
|
534
|
+
"funding": {
|
|
535
|
+
"type": "opencollective",
|
|
536
|
+
"url": "https://opencollective.com/popperjs"
|
|
537
|
+
}
|
|
538
|
+
},
|
|
539
|
+
"node_modules/@remirror/core-constants": {
|
|
540
|
+
"version": "3.0.0",
|
|
541
|
+
"resolved": "https://registry.npmjs.org/@remirror/core-constants/-/core-constants-3.0.0.tgz",
|
|
542
|
+
"integrity": "sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==",
|
|
543
|
+
"license": "MIT"
|
|
544
|
+
},
|
|
518
545
|
"node_modules/@rollup/rollup-android-arm-eabi": {
|
|
519
546
|
"version": "4.59.0",
|
|
520
547
|
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz",
|
|
@@ -865,6 +892,498 @@
|
|
|
865
892
|
"win32"
|
|
866
893
|
]
|
|
867
894
|
},
|
|
895
|
+
"node_modules/@tiptap/core": {
|
|
896
|
+
"version": "2.27.2",
|
|
897
|
+
"resolved": "https://registry.npmjs.org/@tiptap/core/-/core-2.27.2.tgz",
|
|
898
|
+
"integrity": "sha512-ABL1N6eoxzDzC1bYvkMbvyexHacszsKdVPYqhl5GwHLOvpZcv9VE9QaKwDILTyz5voCA0lGcAAXZp+qnXOk5lQ==",
|
|
899
|
+
"license": "MIT",
|
|
900
|
+
"funding": {
|
|
901
|
+
"type": "github",
|
|
902
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
903
|
+
},
|
|
904
|
+
"peerDependencies": {
|
|
905
|
+
"@tiptap/pm": "^2.7.0"
|
|
906
|
+
}
|
|
907
|
+
},
|
|
908
|
+
"node_modules/@tiptap/extension-blockquote": {
|
|
909
|
+
"version": "2.27.2",
|
|
910
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-blockquote/-/extension-blockquote-2.27.2.tgz",
|
|
911
|
+
"integrity": "sha512-oIGZgiAeA4tG3YxbTDfrmENL4/CIwGuP3THtHsNhwRqwsl9SfMk58Ucopi2GXTQSdYXpRJ0ahE6nPqB5D6j/Zw==",
|
|
912
|
+
"license": "MIT",
|
|
913
|
+
"funding": {
|
|
914
|
+
"type": "github",
|
|
915
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
916
|
+
},
|
|
917
|
+
"peerDependencies": {
|
|
918
|
+
"@tiptap/core": "^2.7.0"
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"node_modules/@tiptap/extension-bold": {
|
|
922
|
+
"version": "2.27.2",
|
|
923
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-bold/-/extension-bold-2.27.2.tgz",
|
|
924
|
+
"integrity": "sha512-bR7J5IwjCGQ0s3CIxyMvOCnMFMzIvsc5OVZKscTN5UkXzFsaY6muUAIqtKxayBUucjtUskm5qZowJITCeCb1/A==",
|
|
925
|
+
"license": "MIT",
|
|
926
|
+
"funding": {
|
|
927
|
+
"type": "github",
|
|
928
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
929
|
+
},
|
|
930
|
+
"peerDependencies": {
|
|
931
|
+
"@tiptap/core": "^2.7.0"
|
|
932
|
+
}
|
|
933
|
+
},
|
|
934
|
+
"node_modules/@tiptap/extension-bubble-menu": {
|
|
935
|
+
"version": "2.27.2",
|
|
936
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-bubble-menu/-/extension-bubble-menu-2.27.2.tgz",
|
|
937
|
+
"integrity": "sha512-VkwlCOcr0abTBGzjPXklJ92FCowG7InU8+Od9FyApdLNmn0utRYGRhw0Zno6VgE9EYr1JY4BRnuSa5f9wlR72w==",
|
|
938
|
+
"license": "MIT",
|
|
939
|
+
"dependencies": {
|
|
940
|
+
"tippy.js": "^6.3.7"
|
|
941
|
+
},
|
|
942
|
+
"funding": {
|
|
943
|
+
"type": "github",
|
|
944
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
945
|
+
},
|
|
946
|
+
"peerDependencies": {
|
|
947
|
+
"@tiptap/core": "^2.7.0",
|
|
948
|
+
"@tiptap/pm": "^2.7.0"
|
|
949
|
+
}
|
|
950
|
+
},
|
|
951
|
+
"node_modules/@tiptap/extension-bullet-list": {
|
|
952
|
+
"version": "2.27.2",
|
|
953
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-bullet-list/-/extension-bullet-list-2.27.2.tgz",
|
|
954
|
+
"integrity": "sha512-gmFuKi97u5f8uFc/GQs+zmezjiulZmFiDYTh3trVoLRoc2SAHOjGEB7qxdx7dsqmMN7gwiAWAEVurLKIi1lnnw==",
|
|
955
|
+
"license": "MIT",
|
|
956
|
+
"funding": {
|
|
957
|
+
"type": "github",
|
|
958
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
959
|
+
},
|
|
960
|
+
"peerDependencies": {
|
|
961
|
+
"@tiptap/core": "^2.7.0"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
"node_modules/@tiptap/extension-code": {
|
|
965
|
+
"version": "2.27.2",
|
|
966
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-code/-/extension-code-2.27.2.tgz",
|
|
967
|
+
"integrity": "sha512-7X9AgwqiIGXoZX7uvdHQsGsjILnN/JaEVtqfXZnPECzKGaWHeK/Ao4sYvIIIffsyZJA8k5DC7ny2/0sAgr2TuA==",
|
|
968
|
+
"license": "MIT",
|
|
969
|
+
"funding": {
|
|
970
|
+
"type": "github",
|
|
971
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
972
|
+
},
|
|
973
|
+
"peerDependencies": {
|
|
974
|
+
"@tiptap/core": "^2.7.0"
|
|
975
|
+
}
|
|
976
|
+
},
|
|
977
|
+
"node_modules/@tiptap/extension-code-block": {
|
|
978
|
+
"version": "2.27.2",
|
|
979
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-code-block/-/extension-code-block-2.27.2.tgz",
|
|
980
|
+
"integrity": "sha512-KgvdQHS4jXr79aU3wZOGBIZYYl9vCB7uDEuRFV4so2rYrfmiYMw3T8bTnlNEEGe4RUeAms1i4fdwwvQp9nR1Dw==",
|
|
981
|
+
"license": "MIT",
|
|
982
|
+
"funding": {
|
|
983
|
+
"type": "github",
|
|
984
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
985
|
+
},
|
|
986
|
+
"peerDependencies": {
|
|
987
|
+
"@tiptap/core": "^2.7.0",
|
|
988
|
+
"@tiptap/pm": "^2.7.0"
|
|
989
|
+
}
|
|
990
|
+
},
|
|
991
|
+
"node_modules/@tiptap/extension-document": {
|
|
992
|
+
"version": "2.27.2",
|
|
993
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-document/-/extension-document-2.27.2.tgz",
|
|
994
|
+
"integrity": "sha512-CFhAYsPnyYnosDC4639sCJnBUnYH4Cat9qH5NZWHVvdgtDwu8GZgZn2eSzaKSYXWH1vJ9DSlCK+7UyC3SNXIBA==",
|
|
995
|
+
"license": "MIT",
|
|
996
|
+
"funding": {
|
|
997
|
+
"type": "github",
|
|
998
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
999
|
+
},
|
|
1000
|
+
"peerDependencies": {
|
|
1001
|
+
"@tiptap/core": "^2.7.0"
|
|
1002
|
+
}
|
|
1003
|
+
},
|
|
1004
|
+
"node_modules/@tiptap/extension-dropcursor": {
|
|
1005
|
+
"version": "2.27.2",
|
|
1006
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-dropcursor/-/extension-dropcursor-2.27.2.tgz",
|
|
1007
|
+
"integrity": "sha512-oEu/OrktNoQXq1x29NnH/GOIzQZm8ieTQl3FK27nxfBPA89cNoH4mFEUmBL5/OFIENIjiYG3qWpg6voIqzswNw==",
|
|
1008
|
+
"license": "MIT",
|
|
1009
|
+
"funding": {
|
|
1010
|
+
"type": "github",
|
|
1011
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1012
|
+
},
|
|
1013
|
+
"peerDependencies": {
|
|
1014
|
+
"@tiptap/core": "^2.7.0",
|
|
1015
|
+
"@tiptap/pm": "^2.7.0"
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
"node_modules/@tiptap/extension-floating-menu": {
|
|
1019
|
+
"version": "2.27.2",
|
|
1020
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-floating-menu/-/extension-floating-menu-2.27.2.tgz",
|
|
1021
|
+
"integrity": "sha512-GUN6gPIGXS7ngRJOwdSmtBRBDt9Kt9CM/9pSwKebhLJ+honFoNA+Y6IpVyDvvDMdVNgBchiJLs6qA5H97gAePQ==",
|
|
1022
|
+
"license": "MIT",
|
|
1023
|
+
"dependencies": {
|
|
1024
|
+
"tippy.js": "^6.3.7"
|
|
1025
|
+
},
|
|
1026
|
+
"funding": {
|
|
1027
|
+
"type": "github",
|
|
1028
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1029
|
+
},
|
|
1030
|
+
"peerDependencies": {
|
|
1031
|
+
"@tiptap/core": "^2.7.0",
|
|
1032
|
+
"@tiptap/pm": "^2.7.0"
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1035
|
+
"node_modules/@tiptap/extension-gapcursor": {
|
|
1036
|
+
"version": "2.27.2",
|
|
1037
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-gapcursor/-/extension-gapcursor-2.27.2.tgz",
|
|
1038
|
+
"integrity": "sha512-/c9VF1HBxj+AP54XGVgCmD9bEGYc5w5OofYCFQgM7l7PB1J00A4vOke0oPkHJnqnOOyPlFaxO/7N6l3XwFcnKA==",
|
|
1039
|
+
"license": "MIT",
|
|
1040
|
+
"funding": {
|
|
1041
|
+
"type": "github",
|
|
1042
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1043
|
+
},
|
|
1044
|
+
"peerDependencies": {
|
|
1045
|
+
"@tiptap/core": "^2.7.0",
|
|
1046
|
+
"@tiptap/pm": "^2.7.0"
|
|
1047
|
+
}
|
|
1048
|
+
},
|
|
1049
|
+
"node_modules/@tiptap/extension-hard-break": {
|
|
1050
|
+
"version": "2.27.2",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-hard-break/-/extension-hard-break-2.27.2.tgz",
|
|
1052
|
+
"integrity": "sha512-kSRVGKlCYK6AGR0h8xRkk0WOFGXHIIndod3GKgWU49APuIGDiXd8sziXsSlniUsWmqgDmDXcNnSzPcV7AQ8YNg==",
|
|
1053
|
+
"license": "MIT",
|
|
1054
|
+
"funding": {
|
|
1055
|
+
"type": "github",
|
|
1056
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1057
|
+
},
|
|
1058
|
+
"peerDependencies": {
|
|
1059
|
+
"@tiptap/core": "^2.7.0"
|
|
1060
|
+
}
|
|
1061
|
+
},
|
|
1062
|
+
"node_modules/@tiptap/extension-heading": {
|
|
1063
|
+
"version": "2.27.2",
|
|
1064
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-heading/-/extension-heading-2.27.2.tgz",
|
|
1065
|
+
"integrity": "sha512-iM3yeRWuuQR/IRQ1djwNooJGfn9Jts9zF43qZIUf+U2NY8IlvdNsk2wTOdBgh6E0CamrStPxYGuln3ZS4fuglw==",
|
|
1066
|
+
"license": "MIT",
|
|
1067
|
+
"funding": {
|
|
1068
|
+
"type": "github",
|
|
1069
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1070
|
+
},
|
|
1071
|
+
"peerDependencies": {
|
|
1072
|
+
"@tiptap/core": "^2.7.0"
|
|
1073
|
+
}
|
|
1074
|
+
},
|
|
1075
|
+
"node_modules/@tiptap/extension-history": {
|
|
1076
|
+
"version": "2.27.2",
|
|
1077
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-history/-/extension-history-2.27.2.tgz",
|
|
1078
|
+
"integrity": "sha512-+hSyqERoFNTWPiZx4/FCyZ/0eFqB9fuMdTB4AC/q9iwu3RNWAQtlsJg5230bf/qmyO6bZxRUc0k8p4hrV6ybAw==",
|
|
1079
|
+
"license": "MIT",
|
|
1080
|
+
"funding": {
|
|
1081
|
+
"type": "github",
|
|
1082
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1083
|
+
},
|
|
1084
|
+
"peerDependencies": {
|
|
1085
|
+
"@tiptap/core": "^2.7.0",
|
|
1086
|
+
"@tiptap/pm": "^2.7.0"
|
|
1087
|
+
}
|
|
1088
|
+
},
|
|
1089
|
+
"node_modules/@tiptap/extension-horizontal-rule": {
|
|
1090
|
+
"version": "2.27.2",
|
|
1091
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-horizontal-rule/-/extension-horizontal-rule-2.27.2.tgz",
|
|
1092
|
+
"integrity": "sha512-WGWUSgX+jCsbtf9Y9OCUUgRZYuwjVoieW5n6mAUohJ9/6gc6sGIOrUpBShf+HHo6WD+gtQjRd+PssmX3NPWMpg==",
|
|
1093
|
+
"license": "MIT",
|
|
1094
|
+
"funding": {
|
|
1095
|
+
"type": "github",
|
|
1096
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1097
|
+
},
|
|
1098
|
+
"peerDependencies": {
|
|
1099
|
+
"@tiptap/core": "^2.7.0",
|
|
1100
|
+
"@tiptap/pm": "^2.7.0"
|
|
1101
|
+
}
|
|
1102
|
+
},
|
|
1103
|
+
"node_modules/@tiptap/extension-image": {
|
|
1104
|
+
"version": "2.27.2",
|
|
1105
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-image/-/extension-image-2.27.2.tgz",
|
|
1106
|
+
"integrity": "sha512-5zL/BY41FIt72azVrCrv3n+2YJ/JyO8wxCcA4Dk1eXIobcgVyIdo4rG39gCqIOiqziAsqnqoj12QHTBtHsJ6mQ==",
|
|
1107
|
+
"license": "MIT",
|
|
1108
|
+
"funding": {
|
|
1109
|
+
"type": "github",
|
|
1110
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1111
|
+
},
|
|
1112
|
+
"peerDependencies": {
|
|
1113
|
+
"@tiptap/core": "^2.7.0"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
"node_modules/@tiptap/extension-italic": {
|
|
1117
|
+
"version": "2.27.2",
|
|
1118
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-italic/-/extension-italic-2.27.2.tgz",
|
|
1119
|
+
"integrity": "sha512-1OFsw2SZqfaqx5Fa5v90iNlPRcqyt+lVSjBwTDzuPxTPFY4Q0mL89mKgkq2gVHYNCiaRkXvFLDxaSvBWbmthgg==",
|
|
1120
|
+
"license": "MIT",
|
|
1121
|
+
"funding": {
|
|
1122
|
+
"type": "github",
|
|
1123
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1124
|
+
},
|
|
1125
|
+
"peerDependencies": {
|
|
1126
|
+
"@tiptap/core": "^2.7.0"
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1129
|
+
"node_modules/@tiptap/extension-link": {
|
|
1130
|
+
"version": "2.27.2",
|
|
1131
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-link/-/extension-link-2.27.2.tgz",
|
|
1132
|
+
"integrity": "sha512-bnP61qkr0Kj9Cgnop1hxn2zbOCBzNtmawxr92bVTOE31fJv6FhtCnQiD6tuPQVGMYhcmAj7eihtvuEMFfqEPcQ==",
|
|
1133
|
+
"license": "MIT",
|
|
1134
|
+
"dependencies": {
|
|
1135
|
+
"linkifyjs": "^4.3.2"
|
|
1136
|
+
},
|
|
1137
|
+
"funding": {
|
|
1138
|
+
"type": "github",
|
|
1139
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1140
|
+
},
|
|
1141
|
+
"peerDependencies": {
|
|
1142
|
+
"@tiptap/core": "^2.7.0",
|
|
1143
|
+
"@tiptap/pm": "^2.7.0"
|
|
1144
|
+
}
|
|
1145
|
+
},
|
|
1146
|
+
"node_modules/@tiptap/extension-list-item": {
|
|
1147
|
+
"version": "2.27.2",
|
|
1148
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-list-item/-/extension-list-item-2.27.2.tgz",
|
|
1149
|
+
"integrity": "sha512-eJNee7IEGXMnmygM5SdMGDC8m/lMWmwNGf9fPCK6xk0NxuQRgmZHL6uApKcdH6gyNcRPHCqvTTkhEP7pbny/fg==",
|
|
1150
|
+
"license": "MIT",
|
|
1151
|
+
"funding": {
|
|
1152
|
+
"type": "github",
|
|
1153
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1154
|
+
},
|
|
1155
|
+
"peerDependencies": {
|
|
1156
|
+
"@tiptap/core": "^2.7.0"
|
|
1157
|
+
}
|
|
1158
|
+
},
|
|
1159
|
+
"node_modules/@tiptap/extension-ordered-list": {
|
|
1160
|
+
"version": "2.27.2",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-ordered-list/-/extension-ordered-list-2.27.2.tgz",
|
|
1162
|
+
"integrity": "sha512-M7A4tLGJcLPYdLC4CI2Gwl8LOrENQW59u3cMVa+KkwG1hzSJyPsbDpa1DI6oXPC2WtYiTf22zrbq3gVvH+KA2w==",
|
|
1163
|
+
"license": "MIT",
|
|
1164
|
+
"funding": {
|
|
1165
|
+
"type": "github",
|
|
1166
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1167
|
+
},
|
|
1168
|
+
"peerDependencies": {
|
|
1169
|
+
"@tiptap/core": "^2.7.0"
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
"node_modules/@tiptap/extension-paragraph": {
|
|
1173
|
+
"version": "2.27.2",
|
|
1174
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-paragraph/-/extension-paragraph-2.27.2.tgz",
|
|
1175
|
+
"integrity": "sha512-elYVn2wHJJ+zB9LESENWOAfI4TNT0jqEN34sMA/hCtA4im1ZG2DdLHwkHIshj/c4H0dzQhmsS/YmNC5Vbqab/A==",
|
|
1176
|
+
"license": "MIT",
|
|
1177
|
+
"funding": {
|
|
1178
|
+
"type": "github",
|
|
1179
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1180
|
+
},
|
|
1181
|
+
"peerDependencies": {
|
|
1182
|
+
"@tiptap/core": "^2.7.0"
|
|
1183
|
+
}
|
|
1184
|
+
},
|
|
1185
|
+
"node_modules/@tiptap/extension-placeholder": {
|
|
1186
|
+
"version": "2.27.2",
|
|
1187
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-placeholder/-/extension-placeholder-2.27.2.tgz",
|
|
1188
|
+
"integrity": "sha512-IjsgSVYJRjpAKmIoapU0E2R4E2FPY3kpvU7/1i7PUYisylqejSJxmtJPGYw0FOMQY9oxnEEvfZHMBA610tqKpg==",
|
|
1189
|
+
"license": "MIT",
|
|
1190
|
+
"funding": {
|
|
1191
|
+
"type": "github",
|
|
1192
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1193
|
+
},
|
|
1194
|
+
"peerDependencies": {
|
|
1195
|
+
"@tiptap/core": "^2.7.0",
|
|
1196
|
+
"@tiptap/pm": "^2.7.0"
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"node_modules/@tiptap/extension-strike": {
|
|
1200
|
+
"version": "2.27.2",
|
|
1201
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-strike/-/extension-strike-2.27.2.tgz",
|
|
1202
|
+
"integrity": "sha512-HHIjhafLhS2lHgfAsCwC1okqMsQzR4/mkGDm4M583Yftyjri1TNA7lzhzXWRFWiiMfJxKtdjHjUAQaHuteRTZw==",
|
|
1203
|
+
"license": "MIT",
|
|
1204
|
+
"funding": {
|
|
1205
|
+
"type": "github",
|
|
1206
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1207
|
+
},
|
|
1208
|
+
"peerDependencies": {
|
|
1209
|
+
"@tiptap/core": "^2.7.0"
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"node_modules/@tiptap/extension-table": {
|
|
1213
|
+
"version": "2.27.2",
|
|
1214
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-table/-/extension-table-2.27.2.tgz",
|
|
1215
|
+
"integrity": "sha512-pDbhOpT5phZkcsyPjGBQlXv0+0hmdrvqHJ+dJjkGcCtlfy2pHiEIhmIItOFagc7wXy8G9iUFZ9Jie4zvDf+brg==",
|
|
1216
|
+
"license": "MIT",
|
|
1217
|
+
"funding": {
|
|
1218
|
+
"type": "github",
|
|
1219
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1220
|
+
},
|
|
1221
|
+
"peerDependencies": {
|
|
1222
|
+
"@tiptap/core": "^2.7.0",
|
|
1223
|
+
"@tiptap/pm": "^2.7.0"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"node_modules/@tiptap/extension-table-cell": {
|
|
1227
|
+
"version": "2.27.2",
|
|
1228
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-table-cell/-/extension-table-cell-2.27.2.tgz",
|
|
1229
|
+
"integrity": "sha512-9Lk46MjZMFzVZfOj9Kd7VgC6Odt6vmEhlCYVumErShUY7EkFqCw3b2IYoUtQkntfOEx/Afnhff/okNQwPsJeUA==",
|
|
1230
|
+
"license": "MIT",
|
|
1231
|
+
"funding": {
|
|
1232
|
+
"type": "github",
|
|
1233
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1234
|
+
},
|
|
1235
|
+
"peerDependencies": {
|
|
1236
|
+
"@tiptap/core": "^2.7.0"
|
|
1237
|
+
}
|
|
1238
|
+
},
|
|
1239
|
+
"node_modules/@tiptap/extension-table-header": {
|
|
1240
|
+
"version": "2.27.2",
|
|
1241
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-table-header/-/extension-table-header-2.27.2.tgz",
|
|
1242
|
+
"integrity": "sha512-ZEb6lbG0NbbodWLV0b4BS/QrDIPlUbCcuOsUxzqVvlMUY1Vg6Fj6fKwLaBcsIUDHi8sxZDBEgYEDw3BR/zcO6A==",
|
|
1243
|
+
"license": "MIT",
|
|
1244
|
+
"funding": {
|
|
1245
|
+
"type": "github",
|
|
1246
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1247
|
+
},
|
|
1248
|
+
"peerDependencies": {
|
|
1249
|
+
"@tiptap/core": "^2.7.0"
|
|
1250
|
+
}
|
|
1251
|
+
},
|
|
1252
|
+
"node_modules/@tiptap/extension-table-row": {
|
|
1253
|
+
"version": "2.27.2",
|
|
1254
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-table-row/-/extension-table-row-2.27.2.tgz",
|
|
1255
|
+
"integrity": "sha512-Nw9+tA56Y5HtLVP01NGCZSUuTQhJPtfK9OfmDgGgcxynn2cRVdEtj+9FNZqRhQ1iRVaAI+Rd4xRvX9qYePMOxw==",
|
|
1256
|
+
"license": "MIT",
|
|
1257
|
+
"funding": {
|
|
1258
|
+
"type": "github",
|
|
1259
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1260
|
+
},
|
|
1261
|
+
"peerDependencies": {
|
|
1262
|
+
"@tiptap/core": "^2.7.0"
|
|
1263
|
+
}
|
|
1264
|
+
},
|
|
1265
|
+
"node_modules/@tiptap/extension-text": {
|
|
1266
|
+
"version": "2.27.2",
|
|
1267
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-text/-/extension-text-2.27.2.tgz",
|
|
1268
|
+
"integrity": "sha512-Xk7nYcigljAY0GO9hAQpZ65ZCxqOqaAlTPDFcKerXmlkQZP/8ndx95OgUb1Xf63kmPOh3xypurGS2is3v0MXSA==",
|
|
1269
|
+
"license": "MIT",
|
|
1270
|
+
"funding": {
|
|
1271
|
+
"type": "github",
|
|
1272
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1273
|
+
},
|
|
1274
|
+
"peerDependencies": {
|
|
1275
|
+
"@tiptap/core": "^2.7.0"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
"node_modules/@tiptap/extension-text-style": {
|
|
1279
|
+
"version": "2.27.2",
|
|
1280
|
+
"resolved": "https://registry.npmjs.org/@tiptap/extension-text-style/-/extension-text-style-2.27.2.tgz",
|
|
1281
|
+
"integrity": "sha512-Omk+uxjJLyEY69KStpCw5fA9asvV+MGcAX2HOxyISDFoLaL49TMrNjhGAuz09P1L1b0KGXo4ml7Q3v/Lfy4WPA==",
|
|
1282
|
+
"license": "MIT",
|
|
1283
|
+
"funding": {
|
|
1284
|
+
"type": "github",
|
|
1285
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1286
|
+
},
|
|
1287
|
+
"peerDependencies": {
|
|
1288
|
+
"@tiptap/core": "^2.7.0"
|
|
1289
|
+
}
|
|
1290
|
+
},
|
|
1291
|
+
"node_modules/@tiptap/pm": {
|
|
1292
|
+
"version": "2.27.2",
|
|
1293
|
+
"resolved": "https://registry.npmjs.org/@tiptap/pm/-/pm-2.27.2.tgz",
|
|
1294
|
+
"integrity": "sha512-kaEg7BfiJPDQMKbjVIzEPO3wlcA+pZb2tlcK9gPrdDnEFaec2QTF1sXz2ak2IIb2curvnIrQ4yrfHgLlVA72wA==",
|
|
1295
|
+
"license": "MIT",
|
|
1296
|
+
"dependencies": {
|
|
1297
|
+
"prosemirror-changeset": "^2.3.0",
|
|
1298
|
+
"prosemirror-collab": "^1.3.1",
|
|
1299
|
+
"prosemirror-commands": "^1.6.2",
|
|
1300
|
+
"prosemirror-dropcursor": "^1.8.1",
|
|
1301
|
+
"prosemirror-gapcursor": "^1.3.2",
|
|
1302
|
+
"prosemirror-history": "^1.4.1",
|
|
1303
|
+
"prosemirror-inputrules": "^1.4.0",
|
|
1304
|
+
"prosemirror-keymap": "^1.2.2",
|
|
1305
|
+
"prosemirror-markdown": "^1.13.1",
|
|
1306
|
+
"prosemirror-menu": "^1.2.4",
|
|
1307
|
+
"prosemirror-model": "^1.23.0",
|
|
1308
|
+
"prosemirror-schema-basic": "^1.2.3",
|
|
1309
|
+
"prosemirror-schema-list": "^1.4.1",
|
|
1310
|
+
"prosemirror-state": "^1.4.3",
|
|
1311
|
+
"prosemirror-tables": "^1.6.4",
|
|
1312
|
+
"prosemirror-trailing-node": "^3.0.0",
|
|
1313
|
+
"prosemirror-transform": "^1.10.2",
|
|
1314
|
+
"prosemirror-view": "^1.37.0"
|
|
1315
|
+
},
|
|
1316
|
+
"funding": {
|
|
1317
|
+
"type": "github",
|
|
1318
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1319
|
+
}
|
|
1320
|
+
},
|
|
1321
|
+
"node_modules/@tiptap/starter-kit": {
|
|
1322
|
+
"version": "2.27.2",
|
|
1323
|
+
"resolved": "https://registry.npmjs.org/@tiptap/starter-kit/-/starter-kit-2.27.2.tgz",
|
|
1324
|
+
"integrity": "sha512-bb0gJvPoDuyRUQ/iuN52j1//EtWWttw+RXAv1uJxfR0uKf8X7uAqzaOOgwjknoCIDC97+1YHwpGdnRjpDkOBxw==",
|
|
1325
|
+
"license": "MIT",
|
|
1326
|
+
"dependencies": {
|
|
1327
|
+
"@tiptap/core": "^2.27.2",
|
|
1328
|
+
"@tiptap/extension-blockquote": "^2.27.2",
|
|
1329
|
+
"@tiptap/extension-bold": "^2.27.2",
|
|
1330
|
+
"@tiptap/extension-bullet-list": "^2.27.2",
|
|
1331
|
+
"@tiptap/extension-code": "^2.27.2",
|
|
1332
|
+
"@tiptap/extension-code-block": "^2.27.2",
|
|
1333
|
+
"@tiptap/extension-document": "^2.27.2",
|
|
1334
|
+
"@tiptap/extension-dropcursor": "^2.27.2",
|
|
1335
|
+
"@tiptap/extension-gapcursor": "^2.27.2",
|
|
1336
|
+
"@tiptap/extension-hard-break": "^2.27.2",
|
|
1337
|
+
"@tiptap/extension-heading": "^2.27.2",
|
|
1338
|
+
"@tiptap/extension-history": "^2.27.2",
|
|
1339
|
+
"@tiptap/extension-horizontal-rule": "^2.27.2",
|
|
1340
|
+
"@tiptap/extension-italic": "^2.27.2",
|
|
1341
|
+
"@tiptap/extension-list-item": "^2.27.2",
|
|
1342
|
+
"@tiptap/extension-ordered-list": "^2.27.2",
|
|
1343
|
+
"@tiptap/extension-paragraph": "^2.27.2",
|
|
1344
|
+
"@tiptap/extension-strike": "^2.27.2",
|
|
1345
|
+
"@tiptap/extension-text": "^2.27.2",
|
|
1346
|
+
"@tiptap/extension-text-style": "^2.27.2",
|
|
1347
|
+
"@tiptap/pm": "^2.27.2"
|
|
1348
|
+
},
|
|
1349
|
+
"funding": {
|
|
1350
|
+
"type": "github",
|
|
1351
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
"node_modules/@tiptap/suggestion": {
|
|
1355
|
+
"version": "2.27.2",
|
|
1356
|
+
"resolved": "https://registry.npmjs.org/@tiptap/suggestion/-/suggestion-2.27.2.tgz",
|
|
1357
|
+
"integrity": "sha512-dQyvCIg0hcAVeh4fCIVCxogvbp+bF+GpbUb8sNlgnGrmHXnapGxzkvrlHnvneXZxLk/j7CxmBPKJNnm4Pbx4zw==",
|
|
1358
|
+
"license": "MIT",
|
|
1359
|
+
"funding": {
|
|
1360
|
+
"type": "github",
|
|
1361
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1362
|
+
},
|
|
1363
|
+
"peerDependencies": {
|
|
1364
|
+
"@tiptap/core": "^2.7.0",
|
|
1365
|
+
"@tiptap/pm": "^2.7.0"
|
|
1366
|
+
}
|
|
1367
|
+
},
|
|
1368
|
+
"node_modules/@tiptap/vue-3": {
|
|
1369
|
+
"version": "2.27.2",
|
|
1370
|
+
"resolved": "https://registry.npmjs.org/@tiptap/vue-3/-/vue-3-2.27.2.tgz",
|
|
1371
|
+
"integrity": "sha512-NahnVLTAQsbLaNU9nGLdGCr88nAeQZJTejjBVQc3EzMdijmE46R44Rosj6O/pj3e7eLj1/gYvc+U/hIVbxMpoQ==",
|
|
1372
|
+
"license": "MIT",
|
|
1373
|
+
"dependencies": {
|
|
1374
|
+
"@tiptap/extension-bubble-menu": "^2.27.2",
|
|
1375
|
+
"@tiptap/extension-floating-menu": "^2.27.2"
|
|
1376
|
+
},
|
|
1377
|
+
"funding": {
|
|
1378
|
+
"type": "github",
|
|
1379
|
+
"url": "https://github.com/sponsors/ueberdosis"
|
|
1380
|
+
},
|
|
1381
|
+
"peerDependencies": {
|
|
1382
|
+
"@tiptap/core": "^2.7.0",
|
|
1383
|
+
"@tiptap/pm": "^2.7.0",
|
|
1384
|
+
"vue": "^3.0.0"
|
|
1385
|
+
}
|
|
1386
|
+
},
|
|
868
1387
|
"node_modules/@types/estree": {
|
|
869
1388
|
"version": "1.0.8",
|
|
870
1389
|
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
|
@@ -872,6 +1391,28 @@
|
|
|
872
1391
|
"dev": true,
|
|
873
1392
|
"license": "MIT"
|
|
874
1393
|
},
|
|
1394
|
+
"node_modules/@types/linkify-it": {
|
|
1395
|
+
"version": "5.0.0",
|
|
1396
|
+
"resolved": "https://registry.npmjs.org/@types/linkify-it/-/linkify-it-5.0.0.tgz",
|
|
1397
|
+
"integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==",
|
|
1398
|
+
"license": "MIT"
|
|
1399
|
+
},
|
|
1400
|
+
"node_modules/@types/markdown-it": {
|
|
1401
|
+
"version": "14.1.2",
|
|
1402
|
+
"resolved": "https://registry.npmjs.org/@types/markdown-it/-/markdown-it-14.1.2.tgz",
|
|
1403
|
+
"integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==",
|
|
1404
|
+
"license": "MIT",
|
|
1405
|
+
"dependencies": {
|
|
1406
|
+
"@types/linkify-it": "^5",
|
|
1407
|
+
"@types/mdurl": "^2"
|
|
1408
|
+
}
|
|
1409
|
+
},
|
|
1410
|
+
"node_modules/@types/mdurl": {
|
|
1411
|
+
"version": "2.0.0",
|
|
1412
|
+
"resolved": "https://registry.npmjs.org/@types/mdurl/-/mdurl-2.0.0.tgz",
|
|
1413
|
+
"integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==",
|
|
1414
|
+
"license": "MIT"
|
|
1415
|
+
},
|
|
875
1416
|
"node_modules/@types/trusted-types": {
|
|
876
1417
|
"version": "2.0.7",
|
|
877
1418
|
"resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
|
|
@@ -1071,6 +1612,12 @@
|
|
|
1071
1612
|
"dev": true,
|
|
1072
1613
|
"license": "MIT"
|
|
1073
1614
|
},
|
|
1615
|
+
"node_modules/argparse": {
|
|
1616
|
+
"version": "2.0.1",
|
|
1617
|
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
1618
|
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
1619
|
+
"license": "Python-2.0"
|
|
1620
|
+
},
|
|
1074
1621
|
"node_modules/balanced-match": {
|
|
1075
1622
|
"version": "1.0.2",
|
|
1076
1623
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
@@ -1088,6 +1635,12 @@
|
|
|
1088
1635
|
"balanced-match": "^1.0.0"
|
|
1089
1636
|
}
|
|
1090
1637
|
},
|
|
1638
|
+
"node_modules/crelt": {
|
|
1639
|
+
"version": "1.0.6",
|
|
1640
|
+
"resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.6.tgz",
|
|
1641
|
+
"integrity": "sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==",
|
|
1642
|
+
"license": "MIT"
|
|
1643
|
+
},
|
|
1091
1644
|
"node_modules/csstype": {
|
|
1092
1645
|
"version": "3.2.3",
|
|
1093
1646
|
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
|
|
@@ -1164,6 +1717,18 @@
|
|
|
1164
1717
|
"@esbuild/win32-x64": "0.25.12"
|
|
1165
1718
|
}
|
|
1166
1719
|
},
|
|
1720
|
+
"node_modules/escape-string-regexp": {
|
|
1721
|
+
"version": "4.0.0",
|
|
1722
|
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
|
1723
|
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
|
1724
|
+
"license": "MIT",
|
|
1725
|
+
"engines": {
|
|
1726
|
+
"node": ">=10"
|
|
1727
|
+
},
|
|
1728
|
+
"funding": {
|
|
1729
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1167
1732
|
"node_modules/estree-walker": {
|
|
1168
1733
|
"version": "2.0.2",
|
|
1169
1734
|
"resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz",
|
|
@@ -1213,6 +1778,21 @@
|
|
|
1213
1778
|
"he": "bin/he"
|
|
1214
1779
|
}
|
|
1215
1780
|
},
|
|
1781
|
+
"node_modules/linkify-it": {
|
|
1782
|
+
"version": "5.0.0",
|
|
1783
|
+
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
|
|
1784
|
+
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
|
|
1785
|
+
"license": "MIT",
|
|
1786
|
+
"dependencies": {
|
|
1787
|
+
"uc.micro": "^2.0.0"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
"node_modules/linkifyjs": {
|
|
1791
|
+
"version": "4.3.2",
|
|
1792
|
+
"resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.3.2.tgz",
|
|
1793
|
+
"integrity": "sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==",
|
|
1794
|
+
"license": "MIT"
|
|
1795
|
+
},
|
|
1216
1796
|
"node_modules/lucide-vue-next": {
|
|
1217
1797
|
"version": "0.470.0",
|
|
1218
1798
|
"resolved": "https://registry.npmjs.org/lucide-vue-next/-/lucide-vue-next-0.470.0.tgz",
|
|
@@ -1231,6 +1811,35 @@
|
|
|
1231
1811
|
"@jridgewell/sourcemap-codec": "^1.5.5"
|
|
1232
1812
|
}
|
|
1233
1813
|
},
|
|
1814
|
+
"node_modules/markdown-it": {
|
|
1815
|
+
"version": "14.1.1",
|
|
1816
|
+
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.1.tgz",
|
|
1817
|
+
"integrity": "sha512-BuU2qnTti9YKgK5N+IeMubp14ZUKUUw7yeJbkjtosvHiP0AZ5c8IAgEMk79D0eC8F23r4Ac/q8cAIFdm2FtyoA==",
|
|
1818
|
+
"license": "MIT",
|
|
1819
|
+
"dependencies": {
|
|
1820
|
+
"argparse": "^2.0.1",
|
|
1821
|
+
"entities": "^4.4.0",
|
|
1822
|
+
"linkify-it": "^5.0.0",
|
|
1823
|
+
"mdurl": "^2.0.0",
|
|
1824
|
+
"punycode.js": "^2.3.1",
|
|
1825
|
+
"uc.micro": "^2.1.0"
|
|
1826
|
+
},
|
|
1827
|
+
"bin": {
|
|
1828
|
+
"markdown-it": "bin/markdown-it.mjs"
|
|
1829
|
+
}
|
|
1830
|
+
},
|
|
1831
|
+
"node_modules/markdown-it/node_modules/entities": {
|
|
1832
|
+
"version": "4.5.0",
|
|
1833
|
+
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
|
|
1834
|
+
"integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==",
|
|
1835
|
+
"license": "BSD-2-Clause",
|
|
1836
|
+
"engines": {
|
|
1837
|
+
"node": ">=0.12"
|
|
1838
|
+
},
|
|
1839
|
+
"funding": {
|
|
1840
|
+
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
1841
|
+
}
|
|
1842
|
+
},
|
|
1234
1843
|
"node_modules/marked": {
|
|
1235
1844
|
"version": "15.0.12",
|
|
1236
1845
|
"resolved": "https://registry.npmjs.org/marked/-/marked-15.0.12.tgz",
|
|
@@ -1243,6 +1852,12 @@
|
|
|
1243
1852
|
"node": ">= 18"
|
|
1244
1853
|
}
|
|
1245
1854
|
},
|
|
1855
|
+
"node_modules/mdurl": {
|
|
1856
|
+
"version": "2.0.0",
|
|
1857
|
+
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
1858
|
+
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
|
|
1859
|
+
"license": "MIT"
|
|
1860
|
+
},
|
|
1246
1861
|
"node_modules/minimatch": {
|
|
1247
1862
|
"version": "9.0.9",
|
|
1248
1863
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
|
|
@@ -1284,6 +1899,12 @@
|
|
|
1284
1899
|
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
|
1285
1900
|
}
|
|
1286
1901
|
},
|
|
1902
|
+
"node_modules/orderedmap": {
|
|
1903
|
+
"version": "2.1.1",
|
|
1904
|
+
"resolved": "https://registry.npmjs.org/orderedmap/-/orderedmap-2.1.1.tgz",
|
|
1905
|
+
"integrity": "sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==",
|
|
1906
|
+
"license": "MIT"
|
|
1907
|
+
},
|
|
1287
1908
|
"node_modules/path-browserify": {
|
|
1288
1909
|
"version": "1.0.1",
|
|
1289
1910
|
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
|
|
@@ -1338,6 +1959,210 @@
|
|
|
1338
1959
|
"node": "^10 || ^12 || >=14"
|
|
1339
1960
|
}
|
|
1340
1961
|
},
|
|
1962
|
+
"node_modules/prosemirror-changeset": {
|
|
1963
|
+
"version": "2.4.0",
|
|
1964
|
+
"resolved": "https://registry.npmjs.org/prosemirror-changeset/-/prosemirror-changeset-2.4.0.tgz",
|
|
1965
|
+
"integrity": "sha512-LvqH2v7Q2SF6yxatuPP2e8vSUKS/L+xAU7dPDC4RMyHMhZoGDfBC74mYuyYF4gLqOEG758wajtyhNnsTkuhvng==",
|
|
1966
|
+
"license": "MIT",
|
|
1967
|
+
"dependencies": {
|
|
1968
|
+
"prosemirror-transform": "^1.0.0"
|
|
1969
|
+
}
|
|
1970
|
+
},
|
|
1971
|
+
"node_modules/prosemirror-collab": {
|
|
1972
|
+
"version": "1.3.1",
|
|
1973
|
+
"resolved": "https://registry.npmjs.org/prosemirror-collab/-/prosemirror-collab-1.3.1.tgz",
|
|
1974
|
+
"integrity": "sha512-4SnynYR9TTYaQVXd/ieUvsVV4PDMBzrq2xPUWutHivDuOshZXqQ5rGbZM84HEaXKbLdItse7weMGOUdDVcLKEQ==",
|
|
1975
|
+
"license": "MIT",
|
|
1976
|
+
"dependencies": {
|
|
1977
|
+
"prosemirror-state": "^1.0.0"
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"node_modules/prosemirror-commands": {
|
|
1981
|
+
"version": "1.7.1",
|
|
1982
|
+
"resolved": "https://registry.npmjs.org/prosemirror-commands/-/prosemirror-commands-1.7.1.tgz",
|
|
1983
|
+
"integrity": "sha512-rT7qZnQtx5c0/y/KlYaGvtG411S97UaL6gdp6RIZ23DLHanMYLyfGBV5DtSnZdthQql7W+lEVbpSfwtO8T+L2w==",
|
|
1984
|
+
"license": "MIT",
|
|
1985
|
+
"dependencies": {
|
|
1986
|
+
"prosemirror-model": "^1.0.0",
|
|
1987
|
+
"prosemirror-state": "^1.0.0",
|
|
1988
|
+
"prosemirror-transform": "^1.10.2"
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1991
|
+
"node_modules/prosemirror-dropcursor": {
|
|
1992
|
+
"version": "1.8.2",
|
|
1993
|
+
"resolved": "https://registry.npmjs.org/prosemirror-dropcursor/-/prosemirror-dropcursor-1.8.2.tgz",
|
|
1994
|
+
"integrity": "sha512-CCk6Gyx9+Tt2sbYk5NK0nB1ukHi2ryaRgadV/LvyNuO3ena1payM2z6Cg0vO1ebK8cxbzo41ku2DE5Axj1Zuiw==",
|
|
1995
|
+
"license": "MIT",
|
|
1996
|
+
"dependencies": {
|
|
1997
|
+
"prosemirror-state": "^1.0.0",
|
|
1998
|
+
"prosemirror-transform": "^1.1.0",
|
|
1999
|
+
"prosemirror-view": "^1.1.0"
|
|
2000
|
+
}
|
|
2001
|
+
},
|
|
2002
|
+
"node_modules/prosemirror-gapcursor": {
|
|
2003
|
+
"version": "1.4.1",
|
|
2004
|
+
"resolved": "https://registry.npmjs.org/prosemirror-gapcursor/-/prosemirror-gapcursor-1.4.1.tgz",
|
|
2005
|
+
"integrity": "sha512-pMdYaEnjNMSwl11yjEGtgTmLkR08m/Vl+Jj443167p9eB3HVQKhYCc4gmHVDsLPODfZfjr/MmirsdyZziXbQKw==",
|
|
2006
|
+
"license": "MIT",
|
|
2007
|
+
"dependencies": {
|
|
2008
|
+
"prosemirror-keymap": "^1.0.0",
|
|
2009
|
+
"prosemirror-model": "^1.0.0",
|
|
2010
|
+
"prosemirror-state": "^1.0.0",
|
|
2011
|
+
"prosemirror-view": "^1.0.0"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"node_modules/prosemirror-history": {
|
|
2015
|
+
"version": "1.5.0",
|
|
2016
|
+
"resolved": "https://registry.npmjs.org/prosemirror-history/-/prosemirror-history-1.5.0.tgz",
|
|
2017
|
+
"integrity": "sha512-zlzTiH01eKA55UAf1MEjtssJeHnGxO0j4K4Dpx+gnmX9n+SHNlDqI2oO1Kv1iPN5B1dm5fsljCfqKF9nFL6HRg==",
|
|
2018
|
+
"license": "MIT",
|
|
2019
|
+
"dependencies": {
|
|
2020
|
+
"prosemirror-state": "^1.2.2",
|
|
2021
|
+
"prosemirror-transform": "^1.0.0",
|
|
2022
|
+
"prosemirror-view": "^1.31.0",
|
|
2023
|
+
"rope-sequence": "^1.3.0"
|
|
2024
|
+
}
|
|
2025
|
+
},
|
|
2026
|
+
"node_modules/prosemirror-inputrules": {
|
|
2027
|
+
"version": "1.5.1",
|
|
2028
|
+
"resolved": "https://registry.npmjs.org/prosemirror-inputrules/-/prosemirror-inputrules-1.5.1.tgz",
|
|
2029
|
+
"integrity": "sha512-7wj4uMjKaXWAQ1CDgxNzNtR9AlsuwzHfdFH1ygEHA2KHF2DOEaXl1CJfNPAKCg9qNEh4rum975QLaCiQPyY6Fw==",
|
|
2030
|
+
"license": "MIT",
|
|
2031
|
+
"dependencies": {
|
|
2032
|
+
"prosemirror-state": "^1.0.0",
|
|
2033
|
+
"prosemirror-transform": "^1.0.0"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"node_modules/prosemirror-keymap": {
|
|
2037
|
+
"version": "1.2.3",
|
|
2038
|
+
"resolved": "https://registry.npmjs.org/prosemirror-keymap/-/prosemirror-keymap-1.2.3.tgz",
|
|
2039
|
+
"integrity": "sha512-4HucRlpiLd1IPQQXNqeo81BGtkY8Ai5smHhKW9jjPKRc2wQIxksg7Hl1tTI2IfT2B/LgX6bfYvXxEpJl7aKYKw==",
|
|
2040
|
+
"license": "MIT",
|
|
2041
|
+
"dependencies": {
|
|
2042
|
+
"prosemirror-state": "^1.0.0",
|
|
2043
|
+
"w3c-keyname": "^2.2.0"
|
|
2044
|
+
}
|
|
2045
|
+
},
|
|
2046
|
+
"node_modules/prosemirror-markdown": {
|
|
2047
|
+
"version": "1.13.4",
|
|
2048
|
+
"resolved": "https://registry.npmjs.org/prosemirror-markdown/-/prosemirror-markdown-1.13.4.tgz",
|
|
2049
|
+
"integrity": "sha512-D98dm4cQ3Hs6EmjK500TdAOew4Z03EV71ajEFiWra3Upr7diytJsjF4mPV2dW+eK5uNectiRj0xFxYI9NLXDbw==",
|
|
2050
|
+
"license": "MIT",
|
|
2051
|
+
"dependencies": {
|
|
2052
|
+
"@types/markdown-it": "^14.0.0",
|
|
2053
|
+
"markdown-it": "^14.0.0",
|
|
2054
|
+
"prosemirror-model": "^1.25.0"
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
"node_modules/prosemirror-menu": {
|
|
2058
|
+
"version": "1.3.0",
|
|
2059
|
+
"resolved": "https://registry.npmjs.org/prosemirror-menu/-/prosemirror-menu-1.3.0.tgz",
|
|
2060
|
+
"integrity": "sha512-TImyPXCHPcDsSka2/lwJ6WjTASr4re/qWq1yoTTuLOqfXucwF6VcRa2LWCkM/EyTD1UO3CUwiH8qURJoWJRxwg==",
|
|
2061
|
+
"license": "MIT",
|
|
2062
|
+
"dependencies": {
|
|
2063
|
+
"crelt": "^1.0.0",
|
|
2064
|
+
"prosemirror-commands": "^1.0.0",
|
|
2065
|
+
"prosemirror-history": "^1.0.0",
|
|
2066
|
+
"prosemirror-state": "^1.0.0"
|
|
2067
|
+
}
|
|
2068
|
+
},
|
|
2069
|
+
"node_modules/prosemirror-model": {
|
|
2070
|
+
"version": "1.25.4",
|
|
2071
|
+
"resolved": "https://registry.npmjs.org/prosemirror-model/-/prosemirror-model-1.25.4.tgz",
|
|
2072
|
+
"integrity": "sha512-PIM7E43PBxKce8OQeezAs9j4TP+5yDpZVbuurd1h5phUxEKIu+G2a+EUZzIC5nS1mJktDJWzbqS23n1tsAf5QA==",
|
|
2073
|
+
"license": "MIT",
|
|
2074
|
+
"dependencies": {
|
|
2075
|
+
"orderedmap": "^2.0.0"
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
"node_modules/prosemirror-schema-basic": {
|
|
2079
|
+
"version": "1.2.4",
|
|
2080
|
+
"resolved": "https://registry.npmjs.org/prosemirror-schema-basic/-/prosemirror-schema-basic-1.2.4.tgz",
|
|
2081
|
+
"integrity": "sha512-ELxP4TlX3yr2v5rM7Sb70SqStq5NvI15c0j9j/gjsrO5vaw+fnnpovCLEGIcpeGfifkuqJwl4fon6b+KdrODYQ==",
|
|
2082
|
+
"license": "MIT",
|
|
2083
|
+
"dependencies": {
|
|
2084
|
+
"prosemirror-model": "^1.25.0"
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"node_modules/prosemirror-schema-list": {
|
|
2088
|
+
"version": "1.5.1",
|
|
2089
|
+
"resolved": "https://registry.npmjs.org/prosemirror-schema-list/-/prosemirror-schema-list-1.5.1.tgz",
|
|
2090
|
+
"integrity": "sha512-927lFx/uwyQaGwJxLWCZRkjXG0p48KpMj6ueoYiu4JX05GGuGcgzAy62dfiV8eFZftgyBUvLx76RsMe20fJl+Q==",
|
|
2091
|
+
"license": "MIT",
|
|
2092
|
+
"dependencies": {
|
|
2093
|
+
"prosemirror-model": "^1.0.0",
|
|
2094
|
+
"prosemirror-state": "^1.0.0",
|
|
2095
|
+
"prosemirror-transform": "^1.7.3"
|
|
2096
|
+
}
|
|
2097
|
+
},
|
|
2098
|
+
"node_modules/prosemirror-state": {
|
|
2099
|
+
"version": "1.4.4",
|
|
2100
|
+
"resolved": "https://registry.npmjs.org/prosemirror-state/-/prosemirror-state-1.4.4.tgz",
|
|
2101
|
+
"integrity": "sha512-6jiYHH2CIGbCfnxdHbXZ12gySFY/fz/ulZE333G6bPqIZ4F+TXo9ifiR86nAHpWnfoNjOb3o5ESi7J8Uz1jXHw==",
|
|
2102
|
+
"license": "MIT",
|
|
2103
|
+
"dependencies": {
|
|
2104
|
+
"prosemirror-model": "^1.0.0",
|
|
2105
|
+
"prosemirror-transform": "^1.0.0",
|
|
2106
|
+
"prosemirror-view": "^1.27.0"
|
|
2107
|
+
}
|
|
2108
|
+
},
|
|
2109
|
+
"node_modules/prosemirror-tables": {
|
|
2110
|
+
"version": "1.8.5",
|
|
2111
|
+
"resolved": "https://registry.npmjs.org/prosemirror-tables/-/prosemirror-tables-1.8.5.tgz",
|
|
2112
|
+
"integrity": "sha512-V/0cDCsHKHe/tfWkeCmthNUcEp1IVO3p6vwN8XtwE9PZQLAZJigbw3QoraAdfJPir4NKJtNvOB8oYGKRl+t0Dw==",
|
|
2113
|
+
"license": "MIT",
|
|
2114
|
+
"dependencies": {
|
|
2115
|
+
"prosemirror-keymap": "^1.2.3",
|
|
2116
|
+
"prosemirror-model": "^1.25.4",
|
|
2117
|
+
"prosemirror-state": "^1.4.4",
|
|
2118
|
+
"prosemirror-transform": "^1.10.5",
|
|
2119
|
+
"prosemirror-view": "^1.41.4"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
"node_modules/prosemirror-trailing-node": {
|
|
2123
|
+
"version": "3.0.0",
|
|
2124
|
+
"resolved": "https://registry.npmjs.org/prosemirror-trailing-node/-/prosemirror-trailing-node-3.0.0.tgz",
|
|
2125
|
+
"integrity": "sha512-xiun5/3q0w5eRnGYfNlW1uU9W6x5MoFKWwq/0TIRgt09lv7Hcser2QYV8t4muXbEr+Fwo0geYn79Xs4GKywrRQ==",
|
|
2126
|
+
"license": "MIT",
|
|
2127
|
+
"dependencies": {
|
|
2128
|
+
"@remirror/core-constants": "3.0.0",
|
|
2129
|
+
"escape-string-regexp": "^4.0.0"
|
|
2130
|
+
},
|
|
2131
|
+
"peerDependencies": {
|
|
2132
|
+
"prosemirror-model": "^1.22.1",
|
|
2133
|
+
"prosemirror-state": "^1.4.2",
|
|
2134
|
+
"prosemirror-view": "^1.33.8"
|
|
2135
|
+
}
|
|
2136
|
+
},
|
|
2137
|
+
"node_modules/prosemirror-transform": {
|
|
2138
|
+
"version": "1.11.0",
|
|
2139
|
+
"resolved": "https://registry.npmjs.org/prosemirror-transform/-/prosemirror-transform-1.11.0.tgz",
|
|
2140
|
+
"integrity": "sha512-4I7Ce4KpygXb9bkiPS3hTEk4dSHorfRw8uI0pE8IhxlK2GXsqv5tIA7JUSxtSu7u8APVOTtbUBxTmnHIxVkIJw==",
|
|
2141
|
+
"license": "MIT",
|
|
2142
|
+
"dependencies": {
|
|
2143
|
+
"prosemirror-model": "^1.21.0"
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"node_modules/prosemirror-view": {
|
|
2147
|
+
"version": "1.41.7",
|
|
2148
|
+
"resolved": "https://registry.npmjs.org/prosemirror-view/-/prosemirror-view-1.41.7.tgz",
|
|
2149
|
+
"integrity": "sha512-jUwKNCEIGiqdvhlS91/2QAg21e4dfU5bH2iwmSDQeosXJgKF7smG0YSplOWK0cjSNgIqXe7VXqo7EIfUFJdt3w==",
|
|
2150
|
+
"license": "MIT",
|
|
2151
|
+
"dependencies": {
|
|
2152
|
+
"prosemirror-model": "^1.20.0",
|
|
2153
|
+
"prosemirror-state": "^1.0.0",
|
|
2154
|
+
"prosemirror-transform": "^1.1.0"
|
|
2155
|
+
}
|
|
2156
|
+
},
|
|
2157
|
+
"node_modules/punycode.js": {
|
|
2158
|
+
"version": "2.3.1",
|
|
2159
|
+
"resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz",
|
|
2160
|
+
"integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==",
|
|
2161
|
+
"license": "MIT",
|
|
2162
|
+
"engines": {
|
|
2163
|
+
"node": ">=6"
|
|
2164
|
+
}
|
|
2165
|
+
},
|
|
1341
2166
|
"node_modules/rollup": {
|
|
1342
2167
|
"version": "4.59.0",
|
|
1343
2168
|
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz",
|
|
@@ -1383,6 +2208,12 @@
|
|
|
1383
2208
|
"fsevents": "~2.3.2"
|
|
1384
2209
|
}
|
|
1385
2210
|
},
|
|
2211
|
+
"node_modules/rope-sequence": {
|
|
2212
|
+
"version": "1.3.4",
|
|
2213
|
+
"resolved": "https://registry.npmjs.org/rope-sequence/-/rope-sequence-1.3.4.tgz",
|
|
2214
|
+
"integrity": "sha512-UT5EDe2cu2E/6O4igUr5PSFs23nvvukicWHx6GnOPlHAiiYbzNuCRQCuiUdHJQcqKalLKlrYJnjY0ySGsXNQXQ==",
|
|
2215
|
+
"license": "MIT"
|
|
2216
|
+
},
|
|
1386
2217
|
"node_modules/source-map-js": {
|
|
1387
2218
|
"version": "1.2.1",
|
|
1388
2219
|
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
@@ -1409,6 +2240,15 @@
|
|
|
1409
2240
|
"url": "https://github.com/sponsors/SuperchupuDev"
|
|
1410
2241
|
}
|
|
1411
2242
|
},
|
|
2243
|
+
"node_modules/tippy.js": {
|
|
2244
|
+
"version": "6.3.7",
|
|
2245
|
+
"resolved": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.3.7.tgz",
|
|
2246
|
+
"integrity": "sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==",
|
|
2247
|
+
"license": "MIT",
|
|
2248
|
+
"dependencies": {
|
|
2249
|
+
"@popperjs/core": "^2.9.0"
|
|
2250
|
+
}
|
|
2251
|
+
},
|
|
1412
2252
|
"node_modules/typescript": {
|
|
1413
2253
|
"version": "5.7.3",
|
|
1414
2254
|
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
|
|
@@ -1423,6 +2263,12 @@
|
|
|
1423
2263
|
"node": ">=14.17"
|
|
1424
2264
|
}
|
|
1425
2265
|
},
|
|
2266
|
+
"node_modules/uc.micro": {
|
|
2267
|
+
"version": "2.1.0",
|
|
2268
|
+
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz",
|
|
2269
|
+
"integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==",
|
|
2270
|
+
"license": "MIT"
|
|
2271
|
+
},
|
|
1426
2272
|
"node_modules/vite": {
|
|
1427
2273
|
"version": "6.4.1",
|
|
1428
2274
|
"resolved": "https://registry.npmjs.org/vite/-/vite-6.4.1.tgz",
|
|
@@ -1557,6 +2403,12 @@
|
|
|
1557
2403
|
"peerDependencies": {
|
|
1558
2404
|
"typescript": ">=5.0.0"
|
|
1559
2405
|
}
|
|
2406
|
+
},
|
|
2407
|
+
"node_modules/w3c-keyname": {
|
|
2408
|
+
"version": "2.2.8",
|
|
2409
|
+
"resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.8.tgz",
|
|
2410
|
+
"integrity": "sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==",
|
|
2411
|
+
"license": "MIT"
|
|
1560
2412
|
}
|
|
1561
2413
|
}
|
|
1562
2414
|
}
|