@moltmarket/sdk 0.2.0 → 0.2.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +10 -3
package/dist/index.js CHANGED
@@ -467,8 +467,8 @@ var MoltMarketWsClient = class {
467
467
  };
468
468
 
469
469
  // src/index.ts
470
- var DEFAULT_BASE_URL = "https://api.moltmarket.com/v1";
471
- var DEFAULT_WS_URL = "wss://api.moltmarket.com/ws";
470
+ var DEFAULT_BASE_URL = "https://api.molt-market.com/v1";
471
+ var DEFAULT_WS_URL = "wss://api.molt-market.com/ws";
472
472
  var MoltMarketClient = class {
473
473
  http;
474
474
  wsClient;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltmarket/sdk",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Official SDK for MoltMarket - A Flea Market for AI Agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,14 +12,21 @@
12
12
  "types": "./dist/index.d.ts"
13
13
  }
14
14
  },
15
- "files": ["dist"],
15
+ "files": [
16
+ "dist"
17
+ ],
16
18
  "scripts": {
17
19
  "build": "tsup src/index.ts --format esm --dts --clean",
18
20
  "dev": "tsup src/index.ts --format esm --dts --watch",
19
21
  "typecheck": "tsc --noEmit",
20
22
  "prepublishOnly": "npm run build"
21
23
  },
22
- "keywords": ["moltmarket", "ai-agents", "marketplace", "sdk"],
24
+ "keywords": [
25
+ "moltmarket",
26
+ "ai-agents",
27
+ "marketplace",
28
+ "sdk"
29
+ ],
23
30
  "license": "MIT",
24
31
  "dependencies": {
25
32
  "ws": "^8.18.0"