yank-note-registry 1.0.306 → 1.0.308
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/extensions.json +4 -3
- package/index.json +107 -56
- package/package.json +1 -1
package/extensions.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{ "id": "@yank-note/extension-mermaid", "version": "1.9.0" },
|
|
5
5
|
{ "id": "@yank-note/extension-drawio", "version": "2.5.0" },
|
|
6
6
|
{ "id": "@yank-note/extension-excalidraw", "version": "1.7.4" },
|
|
7
|
-
{ "id": "@yank-note/extension-
|
|
7
|
+
{ "id": "@yank-note/extension-graph-view", "version": "1.0.0" },
|
|
8
8
|
{ "id": "@yank-note/extension-reveal-js", "version": "1.9.0" },
|
|
9
9
|
{ "id": "@yank-note/extension-markmap", "version": "1.7.1" },
|
|
10
10
|
{ "id": "@yank-note/extension-code-runner", "version": "1.4.0" },
|
|
@@ -13,10 +13,11 @@
|
|
|
13
13
|
{ "id": "@yank-note/extension-tldraw", "version": "1.1.0" },
|
|
14
14
|
{ "id": "@yank-note/extension-geogebra", "version": "1.2.0" },
|
|
15
15
|
{ "id": "@yank-note/extension-markdown-prettier", "version": "1.4.3" },
|
|
16
|
+
{ "id": "@yank-note/extension-echarts", "version": "1.5.2" },
|
|
16
17
|
{ "id": "@yank-note/extension-pdf-viewer", "version": "1.2.2" },
|
|
17
18
|
{ "id": "@yank-note/extension-popup-preview", "version": "1.2.4" },
|
|
18
19
|
{ "id": "@yank-note/extension-git-push", "version": "1.4.0" },
|
|
19
|
-
{ "id": "@yank-note/extension-sublime-merge", "version": "1.
|
|
20
|
+
{ "id": "@yank-note/extension-sublime-merge", "version": "1.6.0" },
|
|
20
21
|
{ "id": "@yank-note/extension-renumber", "version": "1.0.2" },
|
|
21
22
|
{ "id": "@yank-note/extension-luckysheet", "version": "1.1.4" },
|
|
22
23
|
{ "id": "@yank-note/extension-milkdown", "version": "1.2.2" },
|
|
@@ -30,7 +31,7 @@
|
|
|
30
31
|
{ "id": "yank-note-extension-tool-bar", "version": "1.0.0" },
|
|
31
32
|
{ "id": "yank-note-extension-snippet", "version": "1.0.3" },
|
|
32
33
|
{ "id": "yank-note-extension-docsify", "version": "0.0.3" },
|
|
33
|
-
{ "id": "yank-note-extension-math", "version": "0.3.
|
|
34
|
+
{ "id": "yank-note-extension-math", "version": "0.3.3" },
|
|
34
35
|
{ "id": "yank-note-extension-background", "version": "1.0.3" }
|
|
35
36
|
]
|
|
36
37
|
}
|
package/index.json
CHANGED
|
@@ -185,38 +185,41 @@
|
|
|
185
185
|
"origin": "official"
|
|
186
186
|
},
|
|
187
187
|
{
|
|
188
|
-
"name": "@yank-note/extension-
|
|
189
|
-
"version": "1.
|
|
190
|
-
"displayName": "
|
|
191
|
-
"description": "
|
|
192
|
-
"displayName_ZH-CN": "
|
|
193
|
-
"description_ZH-CN": "
|
|
188
|
+
"name": "@yank-note/extension-graph-view",
|
|
189
|
+
"version": "1.0.0",
|
|
190
|
+
"displayName": "Graph View",
|
|
191
|
+
"description": "Display the repository relationship graph",
|
|
192
|
+
"displayName_ZH-CN": "Graph View",
|
|
193
|
+
"description_ZH-CN": "显示仓库关系图谱",
|
|
194
194
|
"keywords": [],
|
|
195
195
|
"author": {
|
|
196
196
|
"name": "Yank Note"
|
|
197
197
|
},
|
|
198
198
|
"license": "AGPL-3.0",
|
|
199
|
-
"homepage": "https://github.com/purocean/yank-note-extension/tree/main/packages/extension-
|
|
199
|
+
"homepage": "https://github.com/purocean/yank-note-extension/tree/main/packages/extension-graph-view",
|
|
200
200
|
"repository": {
|
|
201
201
|
"type": "git",
|
|
202
202
|
"url": "git+https://github.com/purocean/yank-note-extension.git"
|
|
203
203
|
},
|
|
204
204
|
"main": "./dist/index.js",
|
|
205
205
|
"style": "./dist/style.css",
|
|
206
|
-
"icon": "https://registry.yank-note.com/cdn/@yank-note/extension-
|
|
206
|
+
"icon": "https://registry.yank-note.com/cdn/@yank-note/extension-graph-view/1.0.0/icon.svg",
|
|
207
207
|
"engines": {
|
|
208
|
-
"node": ">=
|
|
209
|
-
"yank-note": "^3.
|
|
208
|
+
"node": ">=18.20.2",
|
|
209
|
+
"yank-note": "^3.78.0"
|
|
210
|
+
},
|
|
211
|
+
"requirements": {
|
|
212
|
+
"premium": true
|
|
210
213
|
},
|
|
211
214
|
"bugs": {
|
|
212
215
|
"url": "https://github.com/purocean/yank-note-extension/issues"
|
|
213
216
|
},
|
|
214
217
|
"dist": {
|
|
215
|
-
"integrity": "sha512-
|
|
216
|
-
"shasum": "
|
|
217
|
-
"tarball": "https://registry.npmjs.org/@yank-note/extension-
|
|
218
|
+
"integrity": "sha512-HDHFY3gcK+cLaOF/oa+tG0o/kzwOrH8wR2jpAM8sREWSYN+EqIIjPXuRPCBEiXFkfylQC+i6vr/pjclcCyX4hg==",
|
|
219
|
+
"shasum": "4f0ee7af5e4551c752b1c309963c9dbfb9b7d58d",
|
|
220
|
+
"tarball": "https://registry.npmjs.org/@yank-note/extension-graph-view/-/extension-graph-view-1.0.0.tgz",
|
|
218
221
|
"fileCount": 7,
|
|
219
|
-
"unpackedSize":
|
|
222
|
+
"unpackedSize": 226495
|
|
220
223
|
},
|
|
221
224
|
"directories": {},
|
|
222
225
|
"maintainers": [
|
|
@@ -225,8 +228,8 @@
|
|
|
225
228
|
"email": "purocean@outlook.com"
|
|
226
229
|
}
|
|
227
230
|
],
|
|
228
|
-
"readmeUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-
|
|
229
|
-
"changelogUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-
|
|
231
|
+
"readmeUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-graph-view/1.0.0/README.md",
|
|
232
|
+
"changelogUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-graph-view/1.0.0/CHANGELOG.md",
|
|
230
233
|
"origin": "official"
|
|
231
234
|
},
|
|
232
235
|
{
|
|
@@ -599,6 +602,51 @@
|
|
|
599
602
|
"changelogUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-markdown-prettier/1.4.3/CHANGELOG.md",
|
|
600
603
|
"origin": "official"
|
|
601
604
|
},
|
|
605
|
+
{
|
|
606
|
+
"name": "@yank-note/extension-echarts",
|
|
607
|
+
"version": "1.5.2",
|
|
608
|
+
"displayName": "ECharts",
|
|
609
|
+
"description": "ECharts integration",
|
|
610
|
+
"displayName_ZH-CN": "ECharts",
|
|
611
|
+
"description_ZH-CN": "ECharts 图形集成",
|
|
612
|
+
"keywords": [],
|
|
613
|
+
"author": {
|
|
614
|
+
"name": "Yank Note"
|
|
615
|
+
},
|
|
616
|
+
"license": "AGPL-3.0",
|
|
617
|
+
"homepage": "https://github.com/purocean/yank-note-extension/tree/main/packages/extension-echarts",
|
|
618
|
+
"repository": {
|
|
619
|
+
"type": "git",
|
|
620
|
+
"url": "git+https://github.com/purocean/yank-note-extension.git"
|
|
621
|
+
},
|
|
622
|
+
"main": "./dist/index.js",
|
|
623
|
+
"style": "./dist/style.css",
|
|
624
|
+
"icon": "https://registry.yank-note.com/cdn/@yank-note/extension-echarts/1.5.2/icon.png",
|
|
625
|
+
"engines": {
|
|
626
|
+
"node": ">=14.6.0",
|
|
627
|
+
"yank-note": "^3.41.0"
|
|
628
|
+
},
|
|
629
|
+
"bugs": {
|
|
630
|
+
"url": "https://github.com/purocean/yank-note-extension/issues"
|
|
631
|
+
},
|
|
632
|
+
"dist": {
|
|
633
|
+
"integrity": "sha512-FR8qZ2yesKwpL7Z9CFiMFJ5Z9Cw6kopTxZ/gHoJWYIs+Ic0ju2FujkMrc9EqpJrTUpNxN0XMUtFZ0gjB4mCRpg==",
|
|
634
|
+
"shasum": "e9d6ea0666e0c16946161fb0967ae213d594313a",
|
|
635
|
+
"tarball": "https://registry.npmjs.org/@yank-note/extension-echarts/-/extension-echarts-1.5.2.tgz",
|
|
636
|
+
"fileCount": 7,
|
|
637
|
+
"unpackedSize": 1220283
|
|
638
|
+
},
|
|
639
|
+
"directories": {},
|
|
640
|
+
"maintainers": [
|
|
641
|
+
{
|
|
642
|
+
"name": "purocean",
|
|
643
|
+
"email": "purocean@outlook.com"
|
|
644
|
+
}
|
|
645
|
+
],
|
|
646
|
+
"readmeUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-echarts/1.5.2/README.md",
|
|
647
|
+
"changelogUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-echarts/1.5.2/CHANGELOG.md",
|
|
648
|
+
"origin": "official"
|
|
649
|
+
},
|
|
602
650
|
{
|
|
603
651
|
"name": "@yank-note/extension-pdf-viewer",
|
|
604
652
|
"version": "1.2.2",
|
|
@@ -743,49 +791,49 @@
|
|
|
743
791
|
},
|
|
744
792
|
{
|
|
745
793
|
"name": "@yank-note/extension-sublime-merge",
|
|
746
|
-
"version": "1.
|
|
747
|
-
"
|
|
794
|
+
"version": "1.6.0",
|
|
795
|
+
"displayName": "Sublime Merge",
|
|
796
|
+
"description": "Sublime Merge integration for Yank Note",
|
|
797
|
+
"displayName_ZH-CN": "Sublime Merge",
|
|
798
|
+
"description_ZH-CN": "Sublime Merge 和 Yank Note 的集成",
|
|
748
799
|
"author": {
|
|
749
800
|
"name": "Yank Note"
|
|
750
801
|
},
|
|
751
802
|
"license": "AGPL-3.0",
|
|
752
|
-
"
|
|
753
|
-
{
|
|
754
|
-
"name": "purocean",
|
|
755
|
-
"email": "purocean@outlook.com"
|
|
756
|
-
}
|
|
757
|
-
],
|
|
803
|
+
"keywords": [],
|
|
758
804
|
"homepage": "https://github.com/purocean/yank-note-extension/tree/main/packages/extension-sublime-merge",
|
|
759
|
-
"
|
|
760
|
-
"
|
|
761
|
-
|
|
762
|
-
"dist": {
|
|
763
|
-
"shasum": "ad9e033bbc603743bfb6b9c4e36455a1a94a2d5f",
|
|
764
|
-
"tarball": "https://registry.npmjs.org/@yank-note/extension-sublime-merge/-/extension-sublime-merge-1.5.0.tgz",
|
|
765
|
-
"fileCount": 6,
|
|
766
|
-
"integrity": "sha512-kwYj/52oTlRiOLvphBfIr/oG88ICFDRK64Xe35Rs/kXsSdj5dsGMplezTnOsLOYS4EBKQYEvPprSo8F7A41C7A==",
|
|
767
|
-
"unpackedSize": 64931
|
|
805
|
+
"repository": {
|
|
806
|
+
"type": "git",
|
|
807
|
+
"url": "git+https://github.com/purocean/yank-note-extension.git"
|
|
768
808
|
},
|
|
769
|
-
"icon": "https://registry.yank-note.com/cdn/@yank-note/extension-sublime-merge/1.5.0/icon.png",
|
|
770
809
|
"main": "./dist/index.js",
|
|
810
|
+
"icon": "https://registry.yank-note.com/cdn/@yank-note/extension-sublime-merge/1.6.0/icon.png",
|
|
771
811
|
"engines": {
|
|
772
812
|
"node": ">=18.20.2",
|
|
773
813
|
"yank-note": "^3.59.1"
|
|
774
814
|
},
|
|
775
|
-
"repository": {
|
|
776
|
-
"url": "git+https://github.com/purocean/yank-note-extension.git",
|
|
777
|
-
"type": "git"
|
|
778
|
-
},
|
|
779
|
-
"description": "Sublime Merge integration for Yank Note",
|
|
780
|
-
"directories": {},
|
|
781
|
-
"displayName": "Sublime Merge",
|
|
782
815
|
"requirements": {
|
|
783
816
|
"terminal": true
|
|
784
817
|
},
|
|
785
|
-
"
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
"
|
|
818
|
+
"bugs": {
|
|
819
|
+
"url": "https://github.com/purocean/yank-note-extension/issues"
|
|
820
|
+
},
|
|
821
|
+
"dist": {
|
|
822
|
+
"integrity": "sha512-MClQVN5Ha9ycc5m3cGUut4jt7dY/q7he1S4iqI8TGFviNtjv7sZLrSxtEge/4Bgdm1N4thUzSSB2cj5gsS2pQg==",
|
|
823
|
+
"shasum": "a756470f8bd294f39fca2eef14f62c44fcc9b569",
|
|
824
|
+
"tarball": "https://registry.npmjs.org/@yank-note/extension-sublime-merge/-/extension-sublime-merge-1.6.0.tgz",
|
|
825
|
+
"fileCount": 6,
|
|
826
|
+
"unpackedSize": 65238
|
|
827
|
+
},
|
|
828
|
+
"directories": {},
|
|
829
|
+
"maintainers": [
|
|
830
|
+
{
|
|
831
|
+
"name": "purocean",
|
|
832
|
+
"email": "purocean@outlook.com"
|
|
833
|
+
}
|
|
834
|
+
],
|
|
835
|
+
"readmeUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-sublime-merge/1.6.0/README.md",
|
|
836
|
+
"changelogUrl": "https://registry.yank-note.com/cdn/@yank-note/extension-sublime-merge/1.6.0/CHANGELOG.md",
|
|
789
837
|
"origin": "official"
|
|
790
838
|
},
|
|
791
839
|
{
|
|
@@ -1295,7 +1343,7 @@
|
|
|
1295
1343
|
},
|
|
1296
1344
|
{
|
|
1297
1345
|
"name": "yank-note-extension-math",
|
|
1298
|
-
"version": "0.3.
|
|
1346
|
+
"version": "0.3.3",
|
|
1299
1347
|
"displayName": "数学扩展",
|
|
1300
1348
|
"description": "面向数学用户的 Yank Note 扩展",
|
|
1301
1349
|
"author": {
|
|
@@ -1305,11 +1353,11 @@
|
|
|
1305
1353
|
"keywords": [],
|
|
1306
1354
|
"repository": {
|
|
1307
1355
|
"type": "git",
|
|
1308
|
-
"url": "https://github.com/MirionQs/yank-note-extension-math.git"
|
|
1356
|
+
"url": "git+https://github.com/MirionQs/yank-note-extension-math.git"
|
|
1309
1357
|
},
|
|
1310
1358
|
"homepage": "https://github.com/MirionQs/yank-note-extension-math",
|
|
1311
1359
|
"main": "./dist/index.js",
|
|
1312
|
-
"icon": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.
|
|
1360
|
+
"icon": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.3/icon.png",
|
|
1313
1361
|
"engines": {
|
|
1314
1362
|
"node": ">=18.20.2",
|
|
1315
1363
|
"yank-note": ">=3.75.4"
|
|
@@ -1324,13 +1372,16 @@
|
|
|
1324
1372
|
"css": "./themes/colorful-note.css"
|
|
1325
1373
|
}
|
|
1326
1374
|
],
|
|
1327
|
-
"
|
|
1375
|
+
"gitHead": "5376c72b14efd43fbe46d7d7ce5161ab5ae08bf0",
|
|
1376
|
+
"bugs": {
|
|
1377
|
+
"url": "https://github.com/MirionQs/yank-note-extension-math/issues"
|
|
1378
|
+
},
|
|
1328
1379
|
"dist": {
|
|
1329
|
-
"
|
|
1330
|
-
"
|
|
1331
|
-
"tarball": "https://registry.npmjs.org/yank-note-extension-math/-/yank-note-extension-math-0.3.
|
|
1332
|
-
"fileCount":
|
|
1333
|
-
"unpackedSize":
|
|
1380
|
+
"integrity": "sha512-c0YaWp2EX5xseozknnhh47TZkuSij1DVRJLoLJq56arjCw3Qayf0tAsxEQQbiqE7gJnBl9egLwBGKnB+UW/Xpw==",
|
|
1381
|
+
"shasum": "1d082236b4c9c05c1d9ec2800a4e1eea869e2d9d",
|
|
1382
|
+
"tarball": "https://registry.npmjs.org/yank-note-extension-math/-/yank-note-extension-math-0.3.3.tgz",
|
|
1383
|
+
"fileCount": 28,
|
|
1384
|
+
"unpackedSize": 69055034
|
|
1334
1385
|
},
|
|
1335
1386
|
"directories": {},
|
|
1336
1387
|
"maintainers": [
|
|
@@ -1339,8 +1390,8 @@
|
|
|
1339
1390
|
"email": "mirion@qq.com"
|
|
1340
1391
|
}
|
|
1341
1392
|
],
|
|
1342
|
-
"readmeUrl": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.
|
|
1343
|
-
"changelogUrl": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.
|
|
1393
|
+
"readmeUrl": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.3/README.md",
|
|
1394
|
+
"changelogUrl": "https://registry.yank-note.com/cdn/yank-note-extension-math/0.3.3/CHANGELOG.md",
|
|
1344
1395
|
"origin": "registry"
|
|
1345
1396
|
},
|
|
1346
1397
|
{
|