File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed
Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @anthropic-ai/mcpb" ,
33 "description" : " Tools for building MCP Bundles" ,
4- "version" : " 2.0.0 " ,
4+ "version" : " 2.0.1 " ,
55 "type" : " module" ,
66 "main" : " dist/index.js" ,
77 "module" : " dist/index.js" ,
Original file line number Diff line number Diff line change 11// Browser-compatible exports
22export * from "./schemas/index.js" ;
3+ export * from "./shared/common.js" ;
34export * from "./shared/config.js" ;
45export * from "./shared/constants.js" ;
6+ export * from "./types.js" ;
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ export * from "./node/files.js";
66export * from "./node/sign.js" ;
77export * from "./node/validate.js" ;
88export * from "./schemas/index.js" ;
9+ export * from "./shared/common.js" ;
910export * from "./shared/config.js" ;
1011export * from "./shared/constants.js" ;
12+ export * from "./types.js" ;
Original file line number Diff line number Diff line change @@ -13,3 +13,6 @@ export const McpbSignatureInfoSchema = z.strictObject({
1313 valid_to : z . string ( ) . optional ( ) ,
1414 fingerprint : z . string ( ) . optional ( ) ,
1515} ) ;
16+
17+ export type McpbSignatureInfo = z . infer < typeof McpbSignatureInfoSchema > ;
18+ export type McpbUserConfigValues = z . infer < typeof McpbUserConfigValuesSchema > ;
You can’t perform that action at this time.
0 commit comments