@mastra/s3 0.6.3-alpha.0 → 0.6.3
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 +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/s3",
|
|
3
|
-
"version": "0.6.3
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "S3-compatible filesystem provider for Mastra workspaces (AWS S3, Cloudflare R2, MinIO)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"tsdown": "0.22.9",
|
|
32
32
|
"typescript": "^7.0.2",
|
|
33
33
|
"vitest": "4.1.10",
|
|
34
|
-
"@
|
|
35
|
-
"@internal/
|
|
36
|
-
"@internal/
|
|
37
|
-
"@
|
|
34
|
+
"@mastra/core": "1.67.0",
|
|
35
|
+
"@internal/lint": "0.0.133",
|
|
36
|
+
"@internal/workspace-test-utils": "0.0.77",
|
|
37
|
+
"@internal/types-builder": "0.0.108"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@aws-sdk/types": "^3.0.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"build:watch": "pnpm build --watch",
|
|
62
62
|
"test:unit": "vitest run --exclude '**/*.integration.test.ts'",
|
|
63
63
|
"test:watch": "vitest watch",
|
|
64
|
-
"pretest": "docker compose up -d && sleep
|
|
64
|
+
"pretest": "docker compose up -d --wait --wait-timeout 180 && n=0; until [ \"$(docker compose ps -a -q minio-setup | xargs docker inspect -f '{{.State.Status}}-{{.State.ExitCode}}' 2>/dev/null)\" = 'exited-0' ] || [ \"$n\" -ge 60 ]; do sleep 1; n=$((n+1)); done; [ \"$(docker compose ps -a -q minio-setup | xargs docker inspect -f '{{.State.Status}}-{{.State.ExitCode}}' 2>/dev/null)\" = 'exited-0' ]",
|
|
65
65
|
"test": "S3_ENDPOINT=http://localhost:9000 S3_ACCESS_KEY_ID=minioadmin S3_SECRET_ACCESS_KEY=minioadmin S3_BUCKET=test-bucket S3_REGION=us-east-1 vitest run ./src/**/*.integration.test.ts",
|
|
66
66
|
"posttest": "docker compose down -v",
|
|
67
67
|
"test:cloud": "vitest run ./src/**/*.integration.test.ts",
|