@gbozee/ultimate 0.0.2-21 → 0.0.2-210
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/frontend/frontend-index.js +1318 -0
- package/dist/frontend-index.d.ts +1747 -0
- package/dist/frontend-index.js +3884 -0
- package/dist/index.cjs +65374 -0
- package/dist/index.d.ts +3147 -271
- package/dist/index.js +48714 -21177
- package/dist/mcp-client.cjs +8845 -0
- package/dist/mcp-client.d.ts +5 -0
- package/dist/mcp-client.js +8819 -0
- package/dist/mcp-server.cjs +72447 -0
- package/dist/mcp-server.d.ts +5 -0
- package/dist/mcp-server.js +72423 -0
- package/dist/mcp.d.ts +5 -0
- package/package.json +33 -7
package/dist/mcp.d.ts
ADDED
package/package.json
CHANGED
|
@@ -1,24 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbozee/ultimate",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.2-
|
|
4
|
+
"version": "0.0.2-210",
|
|
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
|
-
"
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
"
|
|
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
|
}
|