@mastra/auth 0.1.2 → 0.1.3-alpha.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +14 -4
package/CHANGELOG.md ADDED
@@ -0,0 +1,25 @@
1
+ # @mastra/auth
2
+
3
+ ## 0.1.3-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
20
+
21
+ ## 0.1.1-alpha.0
22
+
23
+ ### Patch Changes
24
+
25
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
package/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@mastra/auth",
3
- "version": "0.1.2",
3
+ "version": "0.1.3-alpha.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "files": [
7
- "dist"
7
+ "dist",
8
+ "CHANGELOG.md"
8
9
  ],
9
10
  "main": "dist/index.js",
10
11
  "types": "dist/index.d.ts",
@@ -34,9 +35,18 @@
34
35
  "tsup": "^8.5.0",
35
36
  "typescript": "^5.8.3",
36
37
  "vitest": "^3.2.4",
37
- "@internal/lint": "0.0.34",
38
+ "@mastra/core": "0.15.3-alpha.5",
38
39
  "@internal/types-builder": "0.0.9",
39
- "@mastra/core": "0.15.2"
40
+ "@internal/lint": "0.0.34"
41
+ },
42
+ "homepage": "https://mastra.ai",
43
+ "repository": {
44
+ "type": "git",
45
+ "url": "git+https://github.com/mastra-ai/mastra.git",
46
+ "directory": "packages/auth"
47
+ },
48
+ "bugs": {
49
+ "url": "https://github.com/mastra-ai/mastra/issues"
40
50
  },
41
51
  "scripts": {
42
52
  "build": "tsup --silent --config tsup.config.ts",