@larkup/marketplace 0.1.1 → 0.1.2
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/CHANGELOG.md +7 -0
- package/package.json +2 -2
- package/src/tool-registry.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @larkup/marketplace
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 08e7029: Fix LanceDB native-module loading in packaged Larkup installations, align marketplace catalog versions with published tools, and make clearing a knowledge base discoverable.
|
|
8
|
+
- @larkup/core@0.2.1
|
|
9
|
+
|
|
3
10
|
## 0.1.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@larkup/marketplace",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"./manifest": "./src/tool-manifest.schema.ts"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@larkup/core": "0.2.
|
|
17
|
+
"@larkup/core": "0.2.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/node": "^24",
|
package/src/tool-registry.ts
CHANGED
|
@@ -143,7 +143,7 @@ const FALLBACK_REGISTRY: Record<string, ToolDescriptor> = {
|
|
|
143
143
|
name: 'Video & Audio',
|
|
144
144
|
description: 'Index video and audio files with transcription and frame analysis.',
|
|
145
145
|
category: 'media',
|
|
146
|
-
version: '0.
|
|
146
|
+
version: '0.2.0',
|
|
147
147
|
pricing: 'free',
|
|
148
148
|
emoji: '🎬',
|
|
149
149
|
icon: 'Film',
|
|
@@ -226,7 +226,7 @@ const FALLBACK_REGISTRY: Record<string, ToolDescriptor> = {
|
|
|
226
226
|
name: 'Document Editor',
|
|
227
227
|
description: 'AI-powered form filling and document editing with Canvas-style live preview.',
|
|
228
228
|
category: 'utility',
|
|
229
|
-
version: '0.1
|
|
229
|
+
version: '0.2.1',
|
|
230
230
|
pricing: 'free',
|
|
231
231
|
emoji: '📝',
|
|
232
232
|
icon: 'FileEdit',
|