@swarmvaultai/engine 0.1.12 → 0.1.13
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/chunk-6MO57J5C.js +988 -0
- package/dist/chunk-F7HZZ3VM.js +931 -0
- package/dist/chunk-HOJ7NSYC.js +937 -0
- package/dist/chunk-MZSUYTSL.js +998 -0
- package/dist/chunk-SRHM3HP4.js +944 -0
- package/dist/index.js +3 -3
- package/dist/registry-2XHXZDGH.js +12 -0
- package/dist/registry-4QRMVAHX.js +12 -0
- package/dist/registry-B7UXRBW3.js +12 -0
- package/dist/registry-FLSGGY2R.js +12 -0
- package/dist/registry-PGZWRXMD.js +12 -0
- package/package.json +7 -7
- package/LICENSE +0 -21
package/dist/index.js
CHANGED
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
uniqueBy,
|
|
22
22
|
writeFileIfChanged,
|
|
23
23
|
writeJsonFile
|
|
24
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-MZSUYTSL.js";
|
|
25
25
|
|
|
26
26
|
// src/agents.ts
|
|
27
27
|
import fs from "fs/promises";
|
|
@@ -3827,7 +3827,7 @@ async function resolveImageGenerationProvider(rootDir) {
|
|
|
3827
3827
|
if (!providerConfig) {
|
|
3828
3828
|
throw new Error(`No provider configured with id "${preferredProviderId}" for task "imageProvider".`);
|
|
3829
3829
|
}
|
|
3830
|
-
const { createProvider: createProvider2 } = await import("./registry-
|
|
3830
|
+
const { createProvider: createProvider2 } = await import("./registry-2XHXZDGH.js");
|
|
3831
3831
|
return createProvider2(preferredProviderId, providerConfig, rootDir);
|
|
3832
3832
|
}
|
|
3833
3833
|
async function generateOutputArtifacts(rootDir, input) {
|
|
@@ -6766,7 +6766,7 @@ async function bootstrapDemo(rootDir, input) {
|
|
|
6766
6766
|
}
|
|
6767
6767
|
|
|
6768
6768
|
// src/mcp.ts
|
|
6769
|
-
var SERVER_VERSION = "0.1.
|
|
6769
|
+
var SERVER_VERSION = "0.1.13";
|
|
6770
6770
|
async function createMcpServer(rootDir) {
|
|
6771
6771
|
const server = new McpServer({
|
|
6772
6772
|
name: "swarmvault",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmvaultai/engine",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Core engine for SwarmVault: ingest, compile, query, lint, and provider abstractions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -39,6 +39,11 @@
|
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=24.0.0"
|
|
41
41
|
},
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "test -f ../viewer/dist/index.html || pnpm --dir ../viewer build; tsup src/index.ts --format esm --dts && rm -rf dist/viewer && mkdir -p dist/viewer && cp -R ../viewer/dist/. dist/viewer/",
|
|
44
|
+
"test": "vitest run",
|
|
45
|
+
"typecheck": "tsc --noEmit"
|
|
46
|
+
},
|
|
42
47
|
"dependencies": {
|
|
43
48
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
44
49
|
"@mozilla/readability": "^0.6.0",
|
|
@@ -57,10 +62,5 @@
|
|
|
57
62
|
"@types/turndown": "^5.0.5",
|
|
58
63
|
"tsup": "^8.5.0",
|
|
59
64
|
"vitest": "^3.2.4"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"build": "test -f ../viewer/dist/index.html || pnpm --dir ../viewer build; tsup src/index.ts --format esm --dts && rm -rf dist/viewer && mkdir -p dist/viewer && cp -R ../viewer/dist/. dist/viewer/",
|
|
63
|
-
"test": "vitest run",
|
|
64
|
-
"typecheck": "tsc --noEmit"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 SwarmVault
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|