@swarmvaultai/engine 0.7.0 → 0.7.1
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/index.js +1 -1
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -20587,7 +20587,7 @@ async function bootstrapDemo(rootDir, input) {
|
|
|
20587
20587
|
}
|
|
20588
20588
|
|
|
20589
20589
|
// src/mcp.ts
|
|
20590
|
-
var SERVER_VERSION = "0.7.
|
|
20590
|
+
var SERVER_VERSION = "0.7.1";
|
|
20591
20591
|
async function createMcpServer(rootDir) {
|
|
20592
20592
|
const server = new McpServer({
|
|
20593
20593
|
name: "swarmvault",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmvaultai/engine",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"description": "Core engine for SwarmVault: ingest, compile, query, lint, and provider abstractions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -86,6 +86,7 @@
|
|
|
86
86
|
},
|
|
87
87
|
"scripts": {
|
|
88
88
|
"build": "test -f ../viewer/dist/index.html || pnpm --dir ../viewer build; tsup src/index.ts --format esm --dts && tsup --config tsup.hooks.config.ts && rm -rf dist/viewer && mkdir -p dist/viewer && cp -R ../viewer/dist/. dist/viewer/",
|
|
89
|
+
"pretest": "tsup --config tsup.hooks.config.ts",
|
|
89
90
|
"test": "SWARMVAULT_ALLOW_PRIVATE_URLS=1 vitest run",
|
|
90
91
|
"typecheck": "tsc --noEmit"
|
|
91
92
|
}
|