@scoutagent/mcp-server 1.7.0 → 1.8.0

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.cjs CHANGED
@@ -1,4 +1,6 @@
1
1
  #!/usr/bin/env node
2
+ "use strict";
3
+
2
4
  // src/index.ts
3
5
  var import_server = require("@modelcontextprotocol/sdk/server/index.js");
4
6
  var import_stdio = require("@modelcontextprotocol/sdk/server/stdio.js");
package/dist/index.d.cts CHANGED
@@ -1,2 +1 @@
1
-
2
- export { }
1
+ #!/usr/bin/env node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scoutagent/mcp-server",
3
- "version": "1.7.0",
3
+ "version": "1.8.0",
4
4
  "description": "MCP Server for ScoutAgent - AI Scout prediction market on X Layer",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -8,25 +8,24 @@
8
8
  "types": "dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
+ "types": "./dist/index.d.ts",
11
12
  "import": "./dist/index.js",
12
- "require": "./dist/index.cjs",
13
- "types": "./dist/index.d.ts"
13
+ "require": "./dist/index.cjs"
14
14
  }
15
15
  },
16
16
  "bin": {
17
- "scoutagent-mcp": "./dist/index.cjs"
17
+ "scoutagent-mcp": "./dist/index.js"
18
18
  },
19
19
  "files": [
20
- "dist",
20
+ "dist/",
21
21
  "README.md"
22
22
  ],
23
23
  "scripts": {
24
- "build": "tsup src/index.ts --format cjs --dts",
24
+ "build": "tsup src/index.ts --format esm,cjs --dts",
25
25
  "dev": "tsx src/index.ts",
26
26
  "lint": "tsc --noEmit",
27
27
  "clean": "rm -rf dist",
28
- "prepublishOnly": "npm run build",
29
- "postbuild": "node add-shebang.cjs"
28
+ "prepublishOnly": "npm run build"
30
29
  },
31
30
  "keywords": [
32
31
  "mcp",
@@ -68,4 +67,4 @@
68
67
  "tsup": "^8.4.0",
69
68
  "@types/node": "^22.0.0"
70
69
  }
71
- }
70
+ }