@swarmvaultai/engine 0.1.13 → 0.1.14

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/dist/index.js +1 -1
  3. package/package.json +7 -7
package/LICENSE ADDED
@@ -0,0 +1,21 @@
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.
package/dist/index.js CHANGED
@@ -6766,7 +6766,7 @@ async function bootstrapDemo(rootDir, input) {
6766
6766
  }
6767
6767
 
6768
6768
  // src/mcp.ts
6769
- var SERVER_VERSION = "0.1.13";
6769
+ var SERVER_VERSION = "0.1.14";
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.13",
3
+ "version": "0.1.14",
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,11 +39,6 @@
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
- },
47
42
  "dependencies": {
48
43
  "@modelcontextprotocol/sdk": "^1.29.0",
49
44
  "@mozilla/readability": "^0.6.0",
@@ -62,5 +57,10 @@
62
57
  "@types/turndown": "^5.0.5",
63
58
  "tsup": "^8.5.0",
64
59
  "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
+ }