@mastra/google-drive 0.0.0-ag-example-20260516005230
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/CHANGELOG.md +85 -0
- package/LICENSE.md +30 -0
- package/README.md +52 -0
- package/dist/filesystem/index.d.ts +79 -0
- package/dist/filesystem/index.d.ts.map +1 -0
- package/dist/index.cjs +519 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +516 -0
- package/dist/index.js.map +1 -0
- package/dist/provider.d.ts +16 -0
- package/dist/provider.d.ts.map +1 -0
- package/package.json +64 -0
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mastra/google-drive",
|
|
3
|
+
"version": "0.0.0-ag-example-20260516005230",
|
|
4
|
+
"description": "Google Drive filesystem provider for Mastra workspaces",
|
|
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
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@types/node": "22.19.15",
|
|
24
|
+
"@vitest/coverage-v8": "4.1.5",
|
|
25
|
+
"@vitest/ui": "4.1.5",
|
|
26
|
+
"dotenv": "^17.3.1",
|
|
27
|
+
"eslint": "^10.2.1",
|
|
28
|
+
"tsup": "^8.5.1",
|
|
29
|
+
"typescript": "^6.0.3",
|
|
30
|
+
"vitest": "4.1.5",
|
|
31
|
+
"@internal/lint": "0.0.0-ag-example-20260516005230",
|
|
32
|
+
"@mastra/core": "0.0.0-ag-example-20260516005230",
|
|
33
|
+
"@internal/types-builder": "0.0.0-ag-example-20260516005230"
|
|
34
|
+
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"@mastra/core": "0.0.0-ag-example-20260516005230"
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"CHANGELOG.md"
|
|
41
|
+
],
|
|
42
|
+
"homepage": "https://mastra.ai",
|
|
43
|
+
"repository": {
|
|
44
|
+
"type": "git",
|
|
45
|
+
"url": "git+https://github.com/mastra-ai/mastra.git",
|
|
46
|
+
"directory": "workspaces/google-drive"
|
|
47
|
+
},
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/mastra-ai/mastra/issues"
|
|
50
|
+
},
|
|
51
|
+
"engines": {
|
|
52
|
+
"node": ">=22.13.0"
|
|
53
|
+
},
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsup --silent --config tsup.config.ts",
|
|
56
|
+
"build:lib": "pnpm build",
|
|
57
|
+
"build:watch": "pnpm build --watch",
|
|
58
|
+
"test:unit": "vitest run",
|
|
59
|
+
"test": "vitest run",
|
|
60
|
+
"test:cloud": "vitest run --passWithNoTests ./src/**/*.integration.test.ts",
|
|
61
|
+
"test:watch": "vitest watch",
|
|
62
|
+
"lint": "eslint ."
|
|
63
|
+
}
|
|
64
|
+
}
|