@gbozee/ultimate 0.0.2-next.0 → 0.0.2-next.4
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-index.d.ts +41 -2
- package/dist/frontend-index.js +56 -8
- package/dist/index.cjs +1861 -6037
- package/dist/index.d.ts +46 -2
- package/dist/index.js +1858 -6034
- package/dist/mcp-client.cjs +6802 -479
- package/dist/mcp-client.js +6811 -479
- package/dist/mcp-server.cjs +19412 -17183
- package/dist/mcp-server.js +19409 -17180
- package/package.json +12 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gbozee/ultimate",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.2-next.
|
|
4
|
+
"version": "0.0.2-next.4",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -38,7 +38,10 @@
|
|
|
38
38
|
"test:unit": "bun test --timeout 300000 tests/unit-tests",
|
|
39
39
|
"mcp:client": "bun run tests/mcp-client.js dist/mcp-server.js",
|
|
40
40
|
"npm:publish": "npm version prerelease --preid=next && npm publish --access public --registry=https://registry.npmjs.org/ --tag next",
|
|
41
|
-
"verify-proxy": "bun run tests/verify-proxy.ts"
|
|
41
|
+
"verify-proxy": "bun run tests/verify-proxy.ts",
|
|
42
|
+
"dev:zero-cache": "zero-cache-dev -p src/schema.ts",
|
|
43
|
+
"test:playwright": "playwright test tests/v2/playwright-zero-server.test.ts",
|
|
44
|
+
"test:zero": "bun run tests/v2/index.ts"
|
|
42
45
|
},
|
|
43
46
|
"files": [
|
|
44
47
|
"dist"
|
|
@@ -51,11 +54,14 @@
|
|
|
51
54
|
"@trigger.dev/build": "^3.3.17",
|
|
52
55
|
"@types/bun": "^1.1.11",
|
|
53
56
|
"@types/express": "^5.0.1",
|
|
57
|
+
"playwright": "^1.53.2",
|
|
58
|
+
"@playwright/test": "^1.47.2-focal",
|
|
54
59
|
"bun-plugin-dts": "^0.3.0"
|
|
55
60
|
},
|
|
56
61
|
"dependencies": {
|
|
57
62
|
"@anthropic-ai/sdk": "^0.50.3",
|
|
58
63
|
"@modelcontextprotocol/sdk": "^1.11.1",
|
|
64
|
+
"@rocicorp/zero": "../../mono/packages/zero/rocicorp-zero-0.23.2025082300.tgz",
|
|
59
65
|
"@trigger.dev/sdk": "^3.3.17",
|
|
60
66
|
"axios": "^1.10.0",
|
|
61
67
|
"binance": "^2.15.16",
|
|
@@ -65,5 +71,8 @@
|
|
|
65
71
|
"pocketbase": "^0.25.2",
|
|
66
72
|
"socks-proxy-agent": "^8.0.5",
|
|
67
73
|
"zod": "^3.24.4"
|
|
68
|
-
}
|
|
74
|
+
},
|
|
75
|
+
"trustedDependencies": [
|
|
76
|
+
"@rocicorp/zero-sqlite3"
|
|
77
|
+
]
|
|
69
78
|
}
|