@standardagents/builder 0.10.1-next.bbd142a → 0.11.0-next.14455ae

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.10.1-next.bbd142a",
3
+ "version": "0.11.0-next.14455ae",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "restricted",
@@ -46,33 +46,16 @@
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",
53
54
  "client.d.ts",
54
55
  "client"
55
56
  ],
56
- "scripts": {
57
- "build": "pnpm build:ui && pnpm build:code",
58
- "build:code": "tsup",
59
- "build:ui": "vite build --config vite.config.ui.ts",
60
- "build:ui:test": "KEEP_TEST_IDS=true vite build --config vite.config.ui.ts",
61
- "dev": "tsup --watch",
62
- "dev:ui": "vite --config vite.config.ui.ts --port 5177",
63
- "typecheck": "tsc --noEmit",
64
- "test": "vitest",
65
- "test:unit": "vitest --config vitest.config.ts",
66
- "test:integration": "vitest --config vitest.workerd.config.ts",
67
- "test:watch": "vitest --watch",
68
- "test:coverage": "vitest run --coverage"
69
- },
70
57
  "dependencies": {
71
58
  "@formkit/drag-and-drop": "^0.5.3",
72
- "@jsquash/avif": "^2.1.1",
73
- "@jsquash/jpeg": "^1.6.0",
74
- "@jsquash/png": "^3.1.1",
75
- "@standardagents/sip": "workspace:*",
76
59
  "@vueuse/core": "^14.0.0",
77
60
  "lucide-vue-next": "^0.546.0",
78
61
  "monaco-editor": "^0.52.2",
@@ -82,7 +65,10 @@
82
65
  "vue": "^3.5.13",
83
66
  "vue-router": "^4.5.0",
84
67
  "zod": "^4.0.17",
85
- "zodown": "^0.2.1"
68
+ "zodown": "^0.2.1",
69
+ "@standardagents/sip": "0.11.0-next.14455ae",
70
+ "@standardagents/spec": "0.11.0-next.14455ae",
71
+ "@standardagents/vue": "0.11.0-next.14455ae"
86
72
  },
87
73
  "devDependencies": {
88
74
  "@cloudflare/vitest-pool-workers": "^0.10.14",
@@ -97,7 +83,7 @@
97
83
  "tailwindcss": "^4.1.12",
98
84
  "tsup": "^8.0.0",
99
85
  "tsx": "^4.20.6",
100
- "typescript": "~5.8.0",
86
+ "typescript": "^5.9.0",
101
87
  "unplugin-icons": "^22.2.0",
102
88
  "unplugin-vue": "^7.0.4",
103
89
  "vite": "^7.0.6",
@@ -108,5 +94,20 @@
108
94
  "peerDependencies": {
109
95
  "vite": "^7.0.0",
110
96
  "zod": "^3.0.0 || ^4.0.0"
97
+ },
98
+ "scripts": {
99
+ "build": "pnpm build:ui && pnpm build:code && pnpm build:copy-wasm",
100
+ "build:code": "tsup",
101
+ "build:copy-wasm": "cp ../sip/dist/sip.wasm dist/sip.wasm",
102
+ "build:ui": "vite build --config vite.config.ui.ts",
103
+ "build:ui:test": "KEEP_TEST_IDS=true vite build --config vite.config.ui.ts",
104
+ "dev": "tsup --watch",
105
+ "dev:ui": "vite --config vite.config.ui.ts --port 5177",
106
+ "typecheck": "tsc --noEmit",
107
+ "test": "vitest",
108
+ "test:unit": "vitest --config vitest.config.ts",
109
+ "test:integration": "vitest --config vitest.workerd.config.ts",
110
+ "test:watch": "vitest --watch",
111
+ "test:coverage": "vitest run --coverage"
111
112
  }
112
- }
113
+ }