@mastra/azure 0.0.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/dist/index.cjs ADDED
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var chunkLLH5EI3J_cjs = require('./chunk-LLH5EI3J.cjs');
4
+
5
+
6
+
7
+ Object.defineProperty(exports, "AzureBlobFilesystem", {
8
+ enumerable: true,
9
+ get: function () { return chunkLLH5EI3J_cjs.AzureBlobFilesystem; }
10
+ });
11
+ Object.defineProperty(exports, "azureBlobFilesystemProvider", {
12
+ enumerable: true,
13
+ get: function () { return chunkLLH5EI3J_cjs.azureBlobFilesystemProvider; }
14
+ });
15
+ //# sourceMappingURL=index.cjs.map
16
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs"}
@@ -0,0 +1,2 @@
1
+ export { AzureBlobFilesystem, type AzureBlobFilesystemOptions, type AzureBlobMountConfig, azureBlobFilesystemProvider, } from './blob/index.js';
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,KAAK,0BAA0B,EAC/B,KAAK,oBAAoB,EACzB,2BAA2B,GAC5B,MAAM,QAAQ,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ export { AzureBlobFilesystem, azureBlobFilesystemProvider } from './chunk-VFZDLQDB.js';
2
+ //# sourceMappingURL=index.js.map
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
package/package.json ADDED
@@ -0,0 +1,86 @@
1
+ {
2
+ "name": "@mastra/azure",
3
+ "version": "0.0.0",
4
+ "description": "Azure provider for Mastra - includes Blob Storage workspace filesystem",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": {
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
+ },
14
+ "require": {
15
+ "types": "./dist/index.d.ts",
16
+ "default": "./dist/index.cjs"
17
+ }
18
+ },
19
+ "./blob": {
20
+ "import": {
21
+ "types": "./dist/blob/index.d.ts",
22
+ "default": "./dist/blob/index.js"
23
+ },
24
+ "require": {
25
+ "types": "./dist/blob/index.d.ts",
26
+ "default": "./dist/blob/index.cjs"
27
+ }
28
+ },
29
+ "./package.json": "./package.json"
30
+ },
31
+ "scripts": {
32
+ "build": "tsup --silent --config tsup.config.ts",
33
+ "build:lib": "pnpm build",
34
+ "build:watch": "pnpm build --watch",
35
+ "test:unit": "vitest run --exclude '**/*.integration.test.ts'",
36
+ "test:watch": "vitest watch",
37
+ "pretest": "docker compose up -d --wait",
38
+ "test": "AZURE_STORAGE_CONNECTION_STRING='DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://127.0.0.1:10000/devstoreaccount1;' TEST_AZURE_CONTAINER=test-container vitest run integration.test.ts",
39
+ "posttest": "docker compose down -v",
40
+ "test:cloud": "vitest run integration.test.ts",
41
+ "lint": "eslint ."
42
+ },
43
+ "license": "Apache-2.0",
44
+ "dependencies": {
45
+ "@azure/storage-blob": "^12.26.0"
46
+ },
47
+ "devDependencies": {
48
+ "@internal/lint": "workspace:*",
49
+ "@internal/types-builder": "workspace:*",
50
+ "@internal/workspace-test-utils": "workspace:*",
51
+ "@mastra/core": "workspace:*",
52
+ "@types/node": "22.19.15",
53
+ "@vitest/coverage-v8": "catalog:",
54
+ "@vitest/ui": "catalog:",
55
+ "dotenv": "^17.3.1",
56
+ "eslint": "^9.39.4",
57
+ "tsup": "^8.5.1",
58
+ "typescript": "catalog:",
59
+ "vitest": "catalog:"
60
+ },
61
+ "peerDependencies": {
62
+ "@mastra/core": ">=1.4.0-0 <2.0.0-0",
63
+ "@azure/identity": "^4.0.0"
64
+ },
65
+ "peerDependenciesMeta": {
66
+ "@azure/identity": {
67
+ "optional": true
68
+ }
69
+ },
70
+ "files": [
71
+ "dist",
72
+ "CHANGELOG.md"
73
+ ],
74
+ "homepage": "https://mastra.ai",
75
+ "repository": {
76
+ "type": "git",
77
+ "url": "git+https://github.com/mastra-ai/mastra.git",
78
+ "directory": "workspaces/azure"
79
+ },
80
+ "bugs": {
81
+ "url": "https://github.com/mastra-ai/mastra/issues"
82
+ },
83
+ "engines": {
84
+ "node": ">=22.13.0"
85
+ }
86
+ }