@qazuor/claude-code-config 0.1.0 → 0.2.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/dist/index.d.cts CHANGED
@@ -50,8 +50,9 @@ interface FolderPreferences {
50
50
  */
51
51
  /**
52
52
  * MCP server categories
53
+ * Only includes categories with verified npm packages
53
54
  */
54
- type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'project-mgmt' | 'monitoring' | 'testing' | 'security' | 'communication' | 'design' | 'payments' | 'search' | 'ai' | 'custom';
55
+ type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'monitoring' | 'testing' | 'communication' | 'payments' | 'search' | 'project-mgmt' | 'design' | 'ui-library' | 'ai' | 'custom';
55
56
  /**
56
57
  * Configuration field for MCP servers that require setup
57
58
  */
@@ -405,6 +406,8 @@ interface ProjectInfo {
405
406
  entityTypePlural: string;
406
407
  /** Location for examples (optional) */
407
408
  location?: string;
409
+ /** Author name or full author string (optional) */
410
+ author?: string;
408
411
  }
409
412
  /**
410
413
  * User preferences
@@ -972,10 +975,11 @@ declare function getBundleById(id: string): BundleDefinition | undefined;
972
975
 
973
976
  /**
974
977
  * MCP Server definitions
978
+ * Only includes verified, real npm packages
975
979
  */
976
980
 
977
981
  /**
978
- * Available MCP servers
982
+ * Available MCP servers - all packages verified to exist on npm
979
983
  */
980
984
  declare const MCP_SERVERS: McpServerDefinition[];
981
985
 
package/dist/index.d.ts CHANGED
@@ -50,8 +50,9 @@ interface FolderPreferences {
50
50
  */
51
51
  /**
52
52
  * MCP server categories
53
+ * Only includes categories with verified npm packages
53
54
  */
54
- type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'project-mgmt' | 'monitoring' | 'testing' | 'security' | 'communication' | 'design' | 'payments' | 'search' | 'ai' | 'custom';
55
+ type McpCategory = 'documentation' | 'database' | 'cache' | 'version-control' | 'deployment' | 'infrastructure' | 'monitoring' | 'testing' | 'communication' | 'payments' | 'search' | 'project-mgmt' | 'design' | 'ui-library' | 'ai' | 'custom';
55
56
  /**
56
57
  * Configuration field for MCP servers that require setup
57
58
  */
@@ -405,6 +406,8 @@ interface ProjectInfo {
405
406
  entityTypePlural: string;
406
407
  /** Location for examples (optional) */
407
408
  location?: string;
409
+ /** Author name or full author string (optional) */
410
+ author?: string;
408
411
  }
409
412
  /**
410
413
  * User preferences
@@ -972,10 +975,11 @@ declare function getBundleById(id: string): BundleDefinition | undefined;
972
975
 
973
976
  /**
974
977
  * MCP Server definitions
978
+ * Only includes verified, real npm packages
975
979
  */
976
980
 
977
981
  /**
978
- * Available MCP servers
982
+ * Available MCP servers - all packages verified to exist on npm
979
983
  */
980
984
  declare const MCP_SERVERS: McpServerDefinition[];
981
985