@kb-labs/marketplace-entry 2.104.0 → 2.106.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.
Files changed (2) hide show
  1. package/dist/manifest.json +116 -0
  2. package/package.json +19 -19
@@ -0,0 +1,116 @@
1
+ {
2
+ "schema": "kb.plugin/3",
3
+ "id": "@kb-labs/marketplace",
4
+ "version": "0.1.0",
5
+ "display": {
6
+ "name": "Marketplace",
7
+ "description": "Unified marketplace for plugins and adapters",
8
+ "tags": [
9
+ "marketplace",
10
+ "plugins",
11
+ "adapters"
12
+ ]
13
+ },
14
+ "cli": {
15
+ "groupMeta": [
16
+ {
17
+ "path": "marketplace",
18
+ "describe": "Marketplace management commands"
19
+ },
20
+ {
21
+ "path": "marketplace plugins",
22
+ "describe": "Plugin management"
23
+ }
24
+ ],
25
+ "commands": [
26
+ {
27
+ "path": "marketplace install",
28
+ "operationType": "mutate",
29
+ "describe": "Install package(s)",
30
+ "handler": "./commands/install.js#default"
31
+ },
32
+ {
33
+ "path": "marketplace uninstall",
34
+ "operationType": "mutate",
35
+ "describe": "Uninstall package(s)",
36
+ "handler": "./commands/uninstall.js#default"
37
+ },
38
+ {
39
+ "path": "marketplace update",
40
+ "operationType": "mutate",
41
+ "describe": "Update package(s)",
42
+ "handler": "./commands/update.js#default"
43
+ },
44
+ {
45
+ "path": "marketplace sync",
46
+ "operationType": "mutate",
47
+ "describe": "Sync workspace to lock",
48
+ "handler": "./commands/sync.js#default"
49
+ },
50
+ {
51
+ "path": "marketplace plugins list",
52
+ "operationType": "read",
53
+ "describe": "List installed plugins",
54
+ "handler": "./commands/plugins/list.js#default"
55
+ },
56
+ {
57
+ "path": "marketplace plugins enable",
58
+ "operationType": "mutate",
59
+ "describe": "Enable a plugin",
60
+ "handler": "./commands/plugins/enable.js#default"
61
+ },
62
+ {
63
+ "path": "marketplace plugins disable",
64
+ "operationType": "mutate",
65
+ "describe": "Disable a plugin",
66
+ "handler": "./commands/plugins/disable.js#default"
67
+ },
68
+ {
69
+ "path": "marketplace plugins link",
70
+ "operationType": "mutate",
71
+ "describe": "Link a local plugin",
72
+ "handler": "./commands/plugins/link.js#default"
73
+ },
74
+ {
75
+ "path": "marketplace plugins unlink",
76
+ "operationType": "mutate",
77
+ "describe": "Unlink a plugin",
78
+ "handler": "./commands/plugins/unlink.js#default"
79
+ },
80
+ {
81
+ "path": "marketplace plugins doctor",
82
+ "operationType": "analyze",
83
+ "describe": "Diagnose issues",
84
+ "handler": "./commands/plugins/doctor.js#default"
85
+ },
86
+ {
87
+ "path": "marketplace plugins refresh",
88
+ "operationType": "mutate",
89
+ "describe": "Clear CLI discovery cache",
90
+ "handler": "./commands/plugins/refresh.js#default"
91
+ }
92
+ ]
93
+ },
94
+ "permissions": {
95
+ "fs": {
96
+ "read": [
97
+ ".kb/**"
98
+ ],
99
+ "write": [
100
+ ".kb/**"
101
+ ]
102
+ },
103
+ "env": {
104
+ "read": [
105
+ "HOME",
106
+ "USER",
107
+ "PATH",
108
+ "TMPDIR",
109
+ "NODE_ENV",
110
+ "KB_*",
111
+ "KB_MARKETPLACE_URL",
112
+ "KB_GATEWAY_URL"
113
+ ]
114
+ }
115
+ }
116
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/marketplace-entry",
3
3
  "description": "Marketplace CLI plugin — commands for managing plugins, adapters, and other marketplace entities",
4
- "version": "2.104.0",
4
+ "version": "2.106.0",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -17,18 +17,28 @@
17
17
  "files": [
18
18
  "dist"
19
19
  ],
20
+ "scripts": {
21
+ "build": "tsup",
22
+ "clean": "rimraf dist",
23
+ "dev": "tsup --watch",
24
+ "lint": "eslint .",
25
+ "lint:fix": "eslint . --fix",
26
+ "test": "vitest run --passWithNoTests -c ../../vitest.config.ts",
27
+ "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
28
+ "type-check": "tsc --noEmit"
29
+ },
20
30
  "dependencies": {
21
- "@kb-labs/core-workspace": "2.104.0",
22
- "@kb-labs/sdk": "2.22.0",
23
- "@kb-labs/marketplace-contracts": "2.104.0"
31
+ "@kb-labs/core-workspace": "^2.106.0",
32
+ "@kb-labs/marketplace-contracts": "^2.106.0",
33
+ "@kb-labs/sdk": "workspace:*"
24
34
  },
25
35
  "devDependencies": {
36
+ "@kb-labs/devkit": "workspace:*",
37
+ "@kb-labs/shared-testing-e2e": "workspace:*",
26
38
  "@types/node": "^24.3.3",
27
39
  "tsup": "^8.5.0",
28
40
  "typescript": "^5",
29
- "vitest": "^3.2.6",
30
- "@kb-labs/shared-testing-e2e": "2.104.0",
31
- "@kb-labs/devkit": "2.104.0"
41
+ "vitest": "^3.2.6"
32
42
  },
33
43
  "engines": {
34
44
  "node": ">=20.0.0",
@@ -37,15 +47,5 @@
37
47
  "kb": {
38
48
  "manifest": "./dist/manifest.js"
39
49
  },
40
- "sideEffects": false,
41
- "scripts": {
42
- "build": "tsup",
43
- "clean": "rimraf dist",
44
- "dev": "tsup --watch",
45
- "lint": "eslint .",
46
- "lint:fix": "eslint . --fix",
47
- "test": "vitest run --passWithNoTests -c ../../vitest.config.ts",
48
- "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
49
- "type-check": "tsc --noEmit"
50
- }
51
- }
50
+ "sideEffects": false
51
+ }