@contractspec/app.alpic-mcp 3.7.18 → 3.7.20

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 CHANGED
@@ -1,5 +1,26 @@
1
1
  # @contractspec/app.alpic-mcp
2
2
 
3
+ ## 3.7.20
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: auto-bump internal dependents
8
+ - Updated dependencies because of chore: auto-bump internal dependents
9
+ - Updated dependencies because of Add FormSpec layout hints, semantic field rendering, and portable text/textarea input-group addons.
10
+ - Updated dependencies because of Add ThemeSpec light/dark modes and a design-system Tailwind bridge for CSS variables, presets, CSS text, and OKLCH color pass-through.
11
+ - Updated dependencies because of Add a canonical typed result system for ContractSpec success and failure propagation across operations, workflows, jobs, server adapters, MCP, GraphQL, and React clients.
12
+ - @contractspec/bundle.alpic@3.7.20
13
+ - @contractspec/lib.logger@3.7.14
14
+ - @contractspec/lib.contracts-spec@5.5.0
15
+
16
+ ## 3.7.19
17
+
18
+ ### Patch Changes
19
+
20
+ - chore: auto-bump internal dependents
21
+ - Updated dependencies because of chore: auto-bump internal dependents
22
+ - @contractspec/bundle.alpic@3.7.19
23
+
3
24
  ## 3.7.18
4
25
 
5
26
  ### Patch Changes
@@ -0,0 +1,7 @@
1
+ import * as _$_contractspec_lib_contracts_spec_app_config_spec0 from "@contractspec/lib.contracts-spec/app-config/spec";
2
+
3
+ //#region src/blueprint.d.ts
4
+ declare const AlpicMcpBlueprint: _$_contractspec_lib_contracts_spec_app_config_spec0.AppBlueprintSpec;
5
+ //#endregion
6
+ export { AlpicMcpBlueprint };
7
+ //# sourceMappingURL=blueprint.d.mts.map
@@ -0,0 +1,24 @@
1
+ import { defineAppConfig } from "@contractspec/lib.contracts-spec/app-config/spec";
2
+ //#region src/blueprint.ts
3
+ const AlpicMcpBlueprint = defineAppConfig({
4
+ meta: {
5
+ key: "apps.alpic-mcp",
6
+ version: "1.0.0",
7
+ title: "Alpic Mcp",
8
+ description: "ContractSpec package declaration for @contractspec/app.alpic-mcp.",
9
+ domain: "alpic-mcp",
10
+ owners: ["@contractspec-core"],
11
+ tags: [
12
+ "package",
13
+ "apps",
14
+ "alpic-mcp"
15
+ ],
16
+ stability: "experimental",
17
+ appId: "alpic-mcp"
18
+ },
19
+ capabilities: { enabled: [] }
20
+ });
21
+ //#endregion
22
+ export { AlpicMcpBlueprint };
23
+
24
+ //# sourceMappingURL=blueprint.mjs.map
package/dist/index.d.mts CHANGED
@@ -1 +1,2 @@
1
- export { };
1
+ import { AlpicMcpBlueprint } from "./blueprint.mjs";
2
+ export { AlpicMcpBlueprint };
package/dist/index.mjs CHANGED
@@ -1,2 +1,3 @@
1
1
  import "./server.mjs";
2
- export {};
2
+ import { AlpicMcpBlueprint } from "./blueprint.mjs";
3
+ export { AlpicMcpBlueprint };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/app.alpic-mcp",
3
- "version": "3.7.18",
3
+ "version": "3.7.20",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -14,8 +14,9 @@
14
14
  "start": "node dist/server.js"
15
15
  },
16
16
  "dependencies": {
17
- "@contractspec/bundle.alpic": "3.7.18",
18
- "@contractspec/lib.logger": "3.7.13"
17
+ "@contractspec/bundle.alpic": "3.7.20",
18
+ "@contractspec/lib.logger": "3.7.14",
19
+ "@contractspec/lib.contracts-spec": "5.5.0"
19
20
  },
20
21
  "devDependencies": {
21
22
  "@contractspec/tool.tsdown": "3.7.13",
@@ -37,6 +38,7 @@
37
38
  "homepage": "https://contractspec.io",
38
39
  "exports": {
39
40
  ".": "./dist/index.mjs",
41
+ "./blueprint": "./dist/blueprint.mjs",
40
42
  "./server": "./dist/server.mjs",
41
43
  "./*": "./*"
42
44
  }