Files
open-gsio/packages/cloudflare-workers/open-gsio/package.json
geoffsee c6e09644e2 **Refactor:** Restructure server package to streamline imports and improve file organization
- Moved `providers`, `services`, `models`, `lib`, and related files to `src` directory within `server` package.
- Adjusted imports across the codebase to reflect the new paths.
- Renamed several `.ts` files for consistency.
- Introduced an `index.ts` in the `ai/providers` package to export all providers.

This improves maintainability and aligns with the project's updated directory structure.
2025-06-24 20:46:15 -04:00

20 lines
630 B
JSON

{
"name": "@open-gsio/worker",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "bun run build:client && NODE_ENV=production wrangler deploy --minify",
"deploy:dry-run": "bun run build:client && NODE_ENV=production wrangler deploy --minify --dry-run",
"build:client": "(cd ../../../packages/client && vite build)",
"build": "wrangler build"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.3.1",
"vite": "6.3.5",
"wrangler": "^4.18.0",
"@open-gsio/server": "workspace:*",
"@open-gsio/client": "workspace:*",
"@open-gsio/durable-objects": "workspace:*"
}
}