@contractspec/app.alpic-mcp 3.7.15 → 3.7.17

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,25 @@
1
1
  # @contractspec/app.alpic-mcp
2
2
 
3
+ ## 3.7.17
4
+
5
+ ### Patch Changes
6
+
7
+ - chore: auto-bump internal dependents
8
+ - Updated dependencies because of chore: auto-bump internal dependents
9
+ - @contractspec/bundle.alpic@3.7.17
10
+ - @contractspec/lib.logger@3.7.13
11
+
12
+ ## 3.7.16
13
+
14
+ ### Patch Changes
15
+
16
+ - Fix workflow runtime imports for sandboxed workflow execution and keep workflow authoring on safe subpaths.
17
+ - Migration: Keep Node-only workflow runner code out of "use workflow" entrypoints.
18
+ - Deprecations: Importing the broad `@contractspec/lib.contracts-spec/workflow` barrel from sandboxed workflow entrypoints is discouraged.
19
+ - Updated dependencies because of Fix workflow runtime imports for sandboxed workflow execution and keep workflow authoring on safe subpaths.
20
+ - @contractspec/bundle.alpic@3.7.16
21
+ - @contractspec/lib.logger@3.7.13
22
+
3
23
  ## 3.7.15
4
24
 
5
25
  ### Patch Changes
package/dist/server.d.mts CHANGED
@@ -1,7 +1,7 @@
1
- import * as elysia from "elysia";
1
+ import * as _$elysia from "elysia";
2
2
 
3
3
  //#region src/server.d.ts
4
- declare const app: elysia.default<"", {
4
+ declare const app: _$elysia.default<"", {
5
5
  decorator: {};
6
6
  store: {};
7
7
  derive: {};
package/package.json CHANGED
@@ -1,27 +1,27 @@
1
1
  {
2
2
  "name": "@contractspec/app.alpic-mcp",
3
- "version": "3.7.15",
3
+ "version": "3.7.17",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
7
7
  "publish:pkg:canary": "bun publish:pkg --tag canary",
8
8
  "clean": "rm -rf dist",
9
9
  "lint": "bun run lint:fix",
10
- "lint:fix": "biome check --write --unsafe --only=nursery/useSortedClasses . && biome check --write .",
11
- "lint:check": "biome check .",
12
- "build": "tsdown && mkdir -p dist && cp -R assets dist/assets",
13
- "dev": "tsdown --watch",
10
+ "lint:fix": "node ../../../scripts/biome.cjs check --write --unsafe --only=nursery/useSortedClasses . && node ../../../scripts/biome.cjs check --write .",
11
+ "lint:check": "node ../../../scripts/biome.cjs check .",
12
+ "build": "bun ../../../scripts/tsdown.mjs && mkdir -p dist && cp -R assets dist/assets",
13
+ "dev": "bun ../../../scripts/tsdown.mjs --watch",
14
14
  "start": "node dist/server.js"
15
15
  },
16
16
  "dependencies": {
17
- "@contractspec/bundle.alpic": "3.7.15",
18
- "@contractspec/lib.logger": "3.7.12"
17
+ "@contractspec/bundle.alpic": "3.7.17",
18
+ "@contractspec/lib.logger": "3.7.13"
19
19
  },
20
20
  "devDependencies": {
21
- "@contractspec/tool.tsdown": "3.7.12",
22
- "@contractspec/tool.typescript": "3.7.12",
23
- "@types/node": "^25.3.5",
24
- "tsdown": "^0.21.5",
21
+ "@contractspec/tool.tsdown": "3.7.13",
22
+ "@contractspec/tool.typescript": "3.7.13",
23
+ "@types/node": "^25.6.0",
24
+ "tsdown": "^0.21.7",
25
25
  "typescript": "^5.9.3"
26
26
  },
27
27
  "license": "MIT",