better-auth-devtools 0.1.1-alpha.0 → 0.1.1-alpha.2

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 (3) hide show
  1. package/README.md +3 -1
  2. package/package.json +12 -11
  3. package/LICENSE +0 -21
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # better-auth-devtools
2
2
 
3
- Better Auth DevTools as a single installable package.
3
+ An unofficial Better Auth devtool as a single installable package.
4
4
 
5
5
  This package is currently in alpha and may introduce breaking changes between releases.
6
6
 
7
+ This package is unofficial and is not affiliated with, endorsed by, or maintained by the Better Auth team.
8
+
7
9
  Use subpath exports:
8
10
 
9
11
  - `better-auth-devtools/plugin`
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "better-auth-devtools",
3
- "version": "0.1.1-alpha.0",
3
+ "version": "0.1.1-alpha.2",
4
4
  "private": false,
5
- "description": "Better Auth DevTools for managed test users, session switching, and a React DevTools panel via plugin/react subpath exports.",
5
+ "description": "Unofficial Better Auth devtool for managed test users, session switching, and a React DevTools panel via plugin/react subpath exports.",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
9
9
  "files": [
10
- "dist"
10
+ "dist",
11
+ "README.md"
11
12
  ],
12
13
  "license": "MIT",
13
14
  "author": "Harshit",
@@ -37,6 +38,13 @@
37
38
  "import": "./dist/react/index.js"
38
39
  }
39
40
  },
41
+ "scripts": {
42
+ "build": "tsc",
43
+ "dev": "tsc --watch",
44
+ "typecheck": "tsc --noEmit",
45
+ "lint": "echo 'no linter configured'",
46
+ "test": "pnpm exec vitest run"
47
+ },
40
48
  "keywords": [
41
49
  "better-auth",
42
50
  "auth",
@@ -57,12 +65,5 @@
57
65
  "react": "^19.0.0",
58
66
  "react-dom": "^19.0.0",
59
67
  "typescript": "^5.8.0"
60
- },
61
- "scripts": {
62
- "build": "tsc",
63
- "dev": "tsc --watch",
64
- "typecheck": "tsc --noEmit",
65
- "lint": "echo 'no linter configured'",
66
- "test": "pnpm exec vitest run"
67
68
  }
68
- }
69
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.