@gbozee/ultimate 0.0.2-21 → 0.0.2-211

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/mcp.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ // Generated by dts-bundle-generator v9.5.1
2
+
3
+ export declare function main(): Promise<void>;
4
+
5
+ export {};
package/package.json CHANGED
@@ -1,24 +1,44 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-21",
4
+ "version": "0.0.2-211",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
8
8
  "description": "",
9
9
  "exports": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js",
12
- "require": "./dist/index.cjs"
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./frontend": {
16
+ "types": "./dist/frontend-index.d.ts",
17
+ "import": "./dist/frontend-index.js",
18
+ "require": "./dist/frontend-index.cjs"
19
+ },
20
+ "./mcp-server": {
21
+ "types": "./dist/mcp-server.d.ts",
22
+ "import": "./dist/mcp-server.js",
23
+ "require": "./dist/mcp-server.cjs"
24
+ },
25
+ "./mcp-client": {
26
+ "types": "./dist/mcp-client.d.ts",
27
+ "import": "./dist/mcp-client.js",
28
+ "require": "./dist/mcp-client.cjs"
29
+ }
13
30
  },
14
31
  "scripts": {
15
32
  "trigger:deploy": "npx trigger.dev@latest deploy --self-hosted --push",
16
- "trigger:dev": "npx trigger.dev@latest dev",
33
+ "trigger:dev": "npx trigger.dev@latest dev --profile default",
17
34
  "yarn:publish": "yarn publish --prerelease",
18
35
  "build": "bun run build.ts",
19
36
  "prepublishOnly": "bun run build",
20
37
  "test": "bun test --timeout 300000 test",
21
- "npm:publish": "npm publish --access public --registry=https://registry.npmjs.org/"
38
+ "test:unit": "bun test --timeout 300000 tests/unit-tests",
39
+ "mcp:client": "bun run tests/mcp-client.js dist/mcp-server.js",
40
+ "npm:publish": "npm publish --access public --registry=https://registry.npmjs.org/ --tag next",
41
+ "verify-proxy": "bun run tests/verify-proxy.ts"
22
42
  },
23
43
  "files": [
24
44
  "dist"
@@ -30,14 +50,20 @@
30
50
  "devDependencies": {
31
51
  "@trigger.dev/build": "^3.3.17",
32
52
  "@types/bun": "^1.1.11",
53
+ "@types/express": "^5.0.1",
33
54
  "bun-plugin-dts": "^0.3.0"
34
55
  },
35
56
  "dependencies": {
57
+ "@anthropic-ai/sdk": "^0.50.3",
58
+ "@modelcontextprotocol/sdk": "^1.11.1",
36
59
  "@trigger.dev/sdk": "^3.3.17",
60
+ "axios": "^1.10.0",
37
61
  "binance": "^2.15.16",
38
62
  "bybit-api": "^4.1.3",
63
+ "express": "^5.1.0",
39
64
  "https-proxy-agent": "^7.0.6",
40
65
  "pocketbase": "^0.25.2",
41
- "socks-proxy-agent": "^8.0.5"
66
+ "socks-proxy-agent": "^8.0.5",
67
+ "zod": "^3.24.4"
42
68
  }
43
69
  }