@gbozee/ultimate 0.0.2-11 → 0.0.2-110

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,21 +1,41 @@
1
1
  {
2
2
  "name": "@gbozee/ultimate",
3
3
  "type": "module",
4
- "version": "0.0.2-11",
4
+ "version": "0.0.2-110",
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": {
32
+ "trigger:deploy": "npx trigger.dev@latest deploy --self-hosted --push",
33
+ "trigger:dev": "npx trigger.dev@latest dev",
15
34
  "yarn:publish": "yarn publish --prerelease",
16
35
  "build": "bun run build.ts",
17
36
  "prepublishOnly": "bun run build",
18
37
  "test": "bun test --timeout 300000 test",
38
+ "mcp:client": "bun run tests/mcp-client.js dist/mcp-server.js",
19
39
  "npm:publish": "npm publish --access public --registry=https://registry.npmjs.org/"
20
40
  },
21
41
  "files": [
@@ -26,14 +46,21 @@
26
46
  ],
27
47
  "license": "MIT",
28
48
  "devDependencies": {
49
+ "@trigger.dev/build": "^3.3.17",
29
50
  "@types/bun": "^1.1.11",
51
+ "@types/express": "^5.0.1",
30
52
  "bun-plugin-dts": "^0.3.0"
31
53
  },
32
54
  "dependencies": {
55
+ "@anthropic-ai/sdk": "^0.50.3",
56
+ "@modelcontextprotocol/sdk": "^1.11.1",
57
+ "@trigger.dev/sdk": "^3.3.17",
33
58
  "binance": "^2.15.16",
34
59
  "bybit-api": "^4.1.3",
60
+ "express": "^5.1.0",
35
61
  "https-proxy-agent": "^7.0.6",
36
62
  "pocketbase": "^0.25.2",
37
- "socks-proxy-agent": "^8.0.5"
63
+ "socks-proxy-agent": "^8.0.5",
64
+ "zod": "^3.24.4"
38
65
  }
39
66
  }