@standardagents/builder 0.11.0-next.ab7e1ea → 0.11.0-next.c3b4490
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/built-in-routes.js +22071 -401
- package/dist/built-in-routes.js.map +1 -1
- package/dist/client/assets/index.css +1 -1
- package/dist/client/index.js +28 -19
- package/dist/client/vendor.js +1 -1
- package/dist/client/vue.js +1 -1
- package/dist/index.d.ts +674 -840
- package/dist/index.js +7205 -4228
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +7 -0
- package/dist/plugin.js +386 -121
- package/dist/plugin.js.map +1 -1
- package/dist/sip.wasm +0 -0
- package/package.json +8 -4
- package/dist/client/assets/img/meta.svg +0 -19
- package/dist/client/assets/img/moonshotai.svg +0 -4
- package/dist/client/assets/img/zai.svg +0 -219
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.
|
|
3
|
+
"version": "0.11.0-next.c3b4490",
|
|
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,7 +66,9 @@
|
|
|
65
66
|
"vue-router": "^4.5.0",
|
|
66
67
|
"zod": "^4.0.17",
|
|
67
68
|
"zodown": "^0.2.1",
|
|
68
|
-
"@standardagents/
|
|
69
|
+
"@standardagents/spec": "0.11.0-next.c3b4490",
|
|
70
|
+
"@standardagents/sip": "0.11.0-next.c3b4490",
|
|
71
|
+
"@standardagents/vue": "0.11.0-next.c3b4490"
|
|
69
72
|
},
|
|
70
73
|
"devDependencies": {
|
|
71
74
|
"@cloudflare/vitest-pool-workers": "^0.10.14",
|
|
@@ -93,8 +96,9 @@
|
|
|
93
96
|
"zod": "^3.0.0 || ^4.0.0"
|
|
94
97
|
},
|
|
95
98
|
"scripts": {
|
|
96
|
-
"build": "pnpm build:ui && pnpm build:code",
|
|
99
|
+
"build": "pnpm build:ui && pnpm build:code && pnpm build:copy-wasm",
|
|
97
100
|
"build:code": "tsup",
|
|
101
|
+
"build:copy-wasm": "cp ../sip/dist/sip.wasm dist/sip.wasm",
|
|
98
102
|
"build:ui": "vite build --config vite.config.ui.ts",
|
|
99
103
|
"build:ui:test": "KEEP_TEST_IDS=true vite build --config vite.config.ui.ts",
|
|
100
104
|
"dev": "tsup --watch",
|