@standardagents/builder 0.11.0-next.af971ae → 0.11.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/sip.wasm ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@standardagents/builder",
3
- "version": "0.11.0-next.af971ae",
3
+ "version": "0.11.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "restricted",
@@ -46,7 +46,8 @@
46
46
  },
47
47
  "./client": {
48
48
  "types": "./client.d.ts"
49
- }
49
+ },
50
+ "./dist/sip.wasm": "./dist/sip.wasm"
50
51
  },
51
52
  "files": [
52
53
  "dist",
@@ -65,9 +66,9 @@
65
66
  "vue-router": "^4.5.0",
66
67
  "zod": "^4.0.17",
67
68
  "zodown": "^0.2.1",
68
- "@standardagents/sip": "0.11.0-next.af971ae",
69
- "@standardagents/spec": "0.11.0-next.af971ae",
70
- "@standardagents/vue": "0.11.0-next.af971ae"
69
+ "@standardagents/sip": "0.11.0",
70
+ "@standardagents/vue": "0.11.0",
71
+ "@standardagents/spec": "0.11.0"
71
72
  },
72
73
  "devDependencies": {
73
74
  "@cloudflare/vitest-pool-workers": "^0.10.14",
@@ -95,8 +96,9 @@
95
96
  "zod": "^3.0.0 || ^4.0.0"
96
97
  },
97
98
  "scripts": {
98
- "build": "pnpm build:ui && pnpm build:code",
99
+ "build": "pnpm build:ui && pnpm build:code && pnpm build:copy-wasm",
99
100
  "build:code": "tsup",
101
+ "build:copy-wasm": "cp ../sip/dist/sip.wasm dist/sip.wasm",
100
102
  "build:ui": "vite build --config vite.config.ui.ts",
101
103
  "build:ui:test": "KEEP_TEST_IDS=true vite build --config vite.config.ui.ts",
102
104
  "dev": "tsup --watch",