@quilltap/qtap-plugin-gab-ai 1.2.0 → 1.2.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/CLAUDE.md CHANGED
@@ -22,7 +22,7 @@ This is a Quilltap LLM provider plugin that integrates Gab AI's API. The plugin
22
22
  - **index.ts** - Plugin entry point exporting the `LLMProviderPlugin` interface with metadata, config, capabilities, and factory methods
23
23
  - **provider.ts** - `GabAIProvider` class extending `OpenAICompatibleProvider` from `@quilltap/plugin-utils` with Gab-specific config (base URL: `https://gab.ai/v1`)
24
24
  - **types.ts** - Re-exports types from `@quilltap/plugin-types`
25
- - **manifest.json** - Plugin metadata including compatibility requirements (Quilltap >=1.7.0, Node >=18.0.0)
25
+ - **manifest.json** - Plugin metadata including compatibility requirements (Quilltap >=1.7.0, Node >=18.0.0). Keep version in sync with package.json.
26
26
  - **icon.tsx** - React component for the provider icon
27
27
 
28
28
  ### Build System
package/manifest.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
- "$schema": "../qtap-plugin-template/schemas/plugin-manifest.schema.json",
2
+ "$schema": "https://raw.githubusercontent.com/foundry-9/quilltap/refs/heads/main/plugins/dist/qtap-plugin-template/schemas/plugin-manifest.schema.json",
3
3
  "name": "qtap-plugin-gab-ai",
4
4
  "title": "Gab AI Provider",
5
5
  "description": "Provides Gab AI language models for Quilltap",
6
- "version": "1.0.0",
6
+ "version": "1.2.2",
7
7
  "author": {
8
8
  "name": "Foundry-9 LLC",
9
9
  "email": "charles.sebold@foundry-9.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/qtap-plugin-gab-ai",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Gab AI provider plugin for Quilltap",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -15,7 +15,7 @@
15
15
  "@quilltap/plugin-utils": "^1.1.0"
16
16
  },
17
17
  "devDependencies": {
18
- "esbuild": "^0.24.0"
18
+ "esbuild": "^0.27.2"
19
19
  },
20
20
  "publishConfig": {
21
21
  "access": "public"