@webmaster-droid/server 0.1.0 → 0.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmaster-droid/server",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,6 +17,10 @@
17
17
  "types": "./dist/storage-s3/index.d.ts",
18
18
  "import": "./dist/storage-s3/index.js"
19
19
  },
20
+ "./storage-supabase": {
21
+ "types": "./dist/storage-supabase/index.d.ts",
22
+ "import": "./dist/storage-supabase/index.js"
23
+ },
20
24
  "./agent": {
21
25
  "types": "./dist/agent/index.d.ts",
22
26
  "import": "./dist/agent/index.js"
@@ -24,6 +28,10 @@
24
28
  "./api-aws": {
25
29
  "types": "./dist/api-aws/index.d.ts",
26
30
  "import": "./dist/api-aws/index.js"
31
+ },
32
+ "./api-supabase": {
33
+ "types": "./dist/api-supabase/index.d.ts",
34
+ "import": "./dist/api-supabase/index.js"
27
35
  }
28
36
  },
29
37
  "files": [
@@ -36,6 +44,7 @@
36
44
  "@ai-sdk/google": "^3.0.29",
37
45
  "@ai-sdk/openai": "^3.0.29",
38
46
  "@aws-sdk/client-s3": "^3.888.0",
47
+ "@supabase/supabase-js": "^2.57.2",
39
48
  "@webmaster-droid/contracts": "^0.1.0",
40
49
  "ai": "^6.0.86",
41
50
  "aws-lambda": "^1.0.7",
@@ -44,13 +53,13 @@
44
53
  },
45
54
  "scripts": {
46
55
  "typecheck": "tsc --noEmit",
47
- "build": "tsup src/index.ts src/core/index.ts src/storage-s3/index.ts src/agent/index.ts src/api-aws/index.ts --format esm --dts --clean && node scripts/copy-agent-assets.mjs",
56
+ "build": "tsup src/index.ts src/core/index.ts src/storage-s3/index.ts src/storage-supabase/index.ts src/agent/index.ts src/api-aws/index.ts src/api-supabase/index.ts --format esm --dts --clean && node scripts/copy-agent-assets.mjs",
48
57
  "test": "node ../../scripts/run-workspace-tests.mjs"
49
58
  },
50
59
  "devDependencies": {
51
60
  "@types/aws-lambda": "^8.10.160"
52
61
  },
53
- "description": "Unified backend runtime: core service, S3 storage, AI agent, and AWS API adapters.",
62
+ "description": "Unified backend runtime: core service, storage adapters, AI agent, and API adapters for AWS and Supabase.",
54
63
  "license": "MIT",
55
64
  "repository": {
56
65
  "type": "git",