@continuumdao/continuum-node-sdk 1.3.35 → 1.3.37

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 (43) hide show
  1. package/dist/core/chart/analysis/chart-patterns-tools.d.ts +4 -4
  2. package/dist/core/chart/analysis/chart-patterns-tools.d.ts.map +1 -1
  3. package/dist/core/chart/analysis/chart-patterns-tools.js +13 -1
  4. package/dist/core/chart/analysis/chart-patterns-tools.js.map +1 -1
  5. package/dist/core/chart/analysis/elliott-waves-analyze-tools.d.ts +2 -2
  6. package/dist/core/chart/analysis/moving-averages-analyze-tools.d.ts +10 -0
  7. package/dist/core/chart/analysis/moving-averages-analyze-tools.d.ts.map +1 -1
  8. package/dist/core/chart/analysis/moving-averages-analyze-tools.js +46 -20
  9. package/dist/core/chart/analysis/moving-averages-analyze-tools.js.map +1 -1
  10. package/dist/core/chart/analysis/trade-setups/build-trade-uniswap.d.ts.map +1 -1
  11. package/dist/core/chart/analysis/trade-setups/build-trade-uniswap.js +21 -0
  12. package/dist/core/chart/analysis/trade-setups/build-trade-uniswap.js.map +1 -1
  13. package/dist/core/chart/live/binding-extract.d.ts.map +1 -1
  14. package/dist/core/chart/live/binding-extract.js +44 -1
  15. package/dist/core/chart/live/binding-extract.js.map +1 -1
  16. package/dist/core/chart/live/fetch-tick.d.ts.map +1 -1
  17. package/dist/core/chart/live/fetch-tick.js +34 -1
  18. package/dist/core/chart/live/fetch-tick.js.map +1 -1
  19. package/dist/core/chart/live/index.d.ts +1 -1
  20. package/dist/core/chart/live/index.d.ts.map +1 -1
  21. package/dist/core/chart/live/index.js +1 -1
  22. package/dist/core/chart/live/index.js.map +1 -1
  23. package/dist/core/chart/live/schemas.d.ts +1 -0
  24. package/dist/core/chart/live/schemas.d.ts.map +1 -1
  25. package/dist/core/chart/live/schemas.js +1 -0
  26. package/dist/core/chart/live/schemas.js.map +1 -1
  27. package/dist/core/chart-patterns/smoothing.d.ts +8 -0
  28. package/dist/core/chart-patterns/smoothing.d.ts.map +1 -1
  29. package/dist/core/chart-patterns/smoothing.js +27 -0
  30. package/dist/core/chart-patterns/smoothing.js.map +1 -1
  31. package/dist/core/coinmarketcap/schemas.d.ts +2 -2
  32. package/dist/index.d.ts +0 -1
  33. package/dist/index.d.ts.map +1 -1
  34. package/dist/index.js +2 -1
  35. package/dist/index.js.map +1 -1
  36. package/dist/mcp/defi/morpho-input.d.ts +3 -0
  37. package/dist/mcp/defi/morpho-input.d.ts.map +1 -1
  38. package/dist/mcp/defi/morpho-input.js +116 -1
  39. package/dist/mcp/defi/morpho-input.js.map +1 -1
  40. package/dist/mcp/ohlcv-session-wrapper.d.ts.map +1 -1
  41. package/dist/mcp/ohlcv-session-wrapper.js +4 -1
  42. package/dist/mcp/ohlcv-session-wrapper.js.map +1 -1
  43. package/package.json +65 -60
package/package.json CHANGED
@@ -1,62 +1,67 @@
1
1
  {
2
- "name": "@continuumdao/continuum-node-sdk",
3
- "version": "1.3.35",
4
- "description": "JSON SDK for the Continuum node client management API",
5
- "keywords": [],
6
- "homepage": "https://github.com/ContinuumDAO/continuum-node-sdk#readme",
7
- "bugs": {
8
- "url": "https://github.com/ContinuumDAO/continuum-node-sdk/issues"
9
- },
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://github.com/ContinuumDAO/continuum-node-sdk.git"
13
- },
14
- "license": "ISC",
15
- "author": "",
16
- "type": "module",
17
- "exports": {
18
- ".": {
19
- "types": "./dist/index.d.ts",
20
- "import": "./dist/index.js"
21
- },
22
- "./dist/*": "./dist/*"
23
- },
24
- "main": "./dist/index.js",
25
- "types": "./dist/index.d.ts",
26
- "bin": {
27
- "continuum-ta-mcp": "./dist/mcp/ta-server/index.js"
28
- },
29
- "files": [
30
- "dist"
31
- ],
32
- "scripts": {
33
- "prebuild": "bash scripts/prebuild-sync-defi.sh",
34
- "build": "NODE_OPTIONS=--max-old-space-size=8192 tsc",
35
- "postbuild": "mkdir -p dist/mcp/resources && cp -r src/mcp/resources/. dist/mcp/resources/ && node scripts/gen-agent-host-catalog.mjs",
36
- "prepublishOnly": "npm run build",
37
- "test": "npm run build && node --experimental-strip-types --test 'test/**/*.test.ts'",
38
- "mcp:start": "node dist/mcp/server/index.js",
39
- "mcp:ta:start": "node dist/mcp/ta-server/index.js",
40
- "sync-vendor-defi": "bash scripts/sync-vendor-defi.sh"
41
- },
42
- "dependencies": {
43
- "@continuumdao/ctm-mpc-defi": "^0.2.26",
44
- "@curvefi/api": "^2.69.2",
45
- "@modelcontextprotocol/sdk": "^1.29.0",
46
- "express": "^5.2.1",
47
- "fast-technical-indicators": "^1.1.4",
48
- "viem": "^2.51.0",
49
- "zod": "^4.4.3"
50
- },
51
- "devDependencies": {
52
- "@types/express": "^5.0.0",
53
- "@types/node": "^22.15.3",
54
- "typescript": "^5.8.3"
55
- },
56
- "engines": {
57
- "node": ">=18"
58
- },
59
- "publishConfig": {
60
- "access": "public"
61
- }
2
+ "name": "@continuumdao/continuum-node-sdk",
3
+ "version": "1.3.37",
4
+ "description": "JSON SDK for the Continuum node client management API",
5
+ "keywords": [],
6
+ "homepage": "https://github.com/ContinuumDAO/continuum-node-sdk#readme",
7
+ "bugs": {
8
+ "url": "https://github.com/ContinuumDAO/continuum-node-sdk/issues"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/ContinuumDAO/continuum-node-sdk.git"
13
+ },
14
+ "license": "ISC",
15
+ "author": "",
16
+ "type": "module",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "import": "./dist/index.js"
21
+ },
22
+ "./mcp": {
23
+ "types": "./dist/mcp/index.d.ts",
24
+ "import": "./dist/mcp/index.js"
25
+ },
26
+ "./dist/*": "./dist/*"
27
+ },
28
+ "main": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
30
+ "bin": {
31
+ "continuum-ta-mcp": "./dist/mcp/ta-server/index.js"
32
+ },
33
+ "files": [
34
+ "dist"
35
+ ],
36
+ "scripts": {
37
+ "prebuild": "bash scripts/prebuild-sync-defi.sh",
38
+ "build": "NODE_OPTIONS=--max-old-space-size=8192 tsc",
39
+ "postbuild": "mkdir -p dist/mcp/resources && cp -r src/mcp/resources/. dist/mcp/resources/ && node scripts/gen-agent-host-catalog.mjs",
40
+ "prepublishOnly": "npm run build",
41
+ "test": "npm run build && node --experimental-strip-types --test 'test/**/*.test.ts'",
42
+ "mcp:start": "node dist/mcp/server/index.js",
43
+ "mcp:ta:start": "node dist/mcp/ta-server/index.js",
44
+ "sync-vendor-defi": "bash scripts/sync-vendor-defi.sh"
45
+ },
46
+ "dependencies": {
47
+ "@continuumdao/ctm-mpc-defi": "^0.2.28",
48
+ "@curvefi/api": "^2.69.2",
49
+ "@modelcontextprotocol/sdk": "^1.29.0",
50
+ "@morpho-org/midnight-sdk": "^1.3.0",
51
+ "express": "^5.2.1",
52
+ "fast-technical-indicators": "^1.1.4",
53
+ "viem": "^2.51.0",
54
+ "zod": "^4.4.3"
55
+ },
56
+ "devDependencies": {
57
+ "@types/express": "^5.0.0",
58
+ "@types/node": "^22.15.3",
59
+ "typescript": "^5.8.3"
60
+ },
61
+ "engines": {
62
+ "node": ">=18"
63
+ },
64
+ "publishConfig": {
65
+ "access": "public"
66
+ }
62
67
  }