better-auth-studio 1.1.2-beta.21 → 1.1.2-beta.22

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/dist/cli.js +0 -0
  2. package/package.json +27 -35
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "better-auth-studio",
3
- "version": "1.1.2-beta.21",
3
+ "version": "1.1.2-beta.22",
4
4
  "description": "Studio for Better Auth",
5
5
  "keywords": [
6
6
  "admin",
@@ -38,32 +38,6 @@
38
38
  "./nuxt": "./dist/adapters/nuxt.js",
39
39
  "./config": "./dist/types/handler.js"
40
40
  },
41
- "scripts": {
42
- "build": "tsc && pnpm run frontend:build && pnpm run copy:public && pnpm run verify:public",
43
- "copy:public": "rm -rf dist/public && cp -r public dist/",
44
- "verify:public": "test -f dist/public/index.html && echo '✓ Public directory copied successfully' || (echo '✗ ERROR: Public directory not copied!' && exit 1)",
45
- "postinstall": "node scripts/postinstall.js",
46
- "dev": "tsx src/cli.ts",
47
- "start": "node dist/cli.js",
48
- "studio": "tsx src/cli.ts",
49
- "clean": "rm -rf dist",
50
- "frontend:dev": "cd frontend && pnpm run dev",
51
- "frontend:build": "cd frontend && pnpm run build",
52
- "frontend:preview": "cd frontend && pnpm run preview",
53
- "lint": "oxlint . && oxfmt --check .",
54
- "format": "oxlint --fix . && oxfmt .",
55
- "lint:fix": "oxlint --fix . && oxfmt .",
56
- "type-check": "tsc --noEmit",
57
- "test": "vitest",
58
- "test:watch": "vitest --watch",
59
- "test:coverage": "vitest --coverage",
60
- "test:ci": "pnpm test --run",
61
- "release": "pnpm build && bumpp && pnpm publish --access public --no-git-checks",
62
- "release:beta": "pnpm build && bumpp --preid beta && pnpm publish --access public --tag beta --no-git-checks",
63
- "release:no-build": "bumpp && pnpm publish --access public --no-git-checks --tag next",
64
- "release:canary": "pnpm build && bumpp --preid canary --no-commit --no-tag --no-push && pnpm publish --access public --tag canary --no-git-checks",
65
- "bump": "bumpp"
66
- },
67
41
  "dependencies": {
68
42
  "@babel/preset-react": "^7.27.1",
69
43
  "@babel/preset-typescript": "^7.27.1",
@@ -103,12 +77,30 @@
103
77
  "engines": {
104
78
  "node": ">=18.0.0"
105
79
  },
106
- "pnpm": {
107
- "overrides": {
108
- "qs": ">=6.14.1",
109
- "@remix-run/router": ">=1.23.2",
110
- "devalue": ">=5.6.2",
111
- "@sveltejs/kit": ">=2.49.5"
112
- }
80
+ "scripts": {
81
+ "build": "tsc && pnpm run frontend:build && pnpm run copy:public && pnpm run verify:public",
82
+ "copy:public": "rm -rf dist/public && cp -r public dist/",
83
+ "verify:public": "test -f dist/public/index.html && echo '✓ Public directory copied successfully' || (echo '✗ ERROR: Public directory not copied!' && exit 1)",
84
+ "postinstall": "node scripts/postinstall.js",
85
+ "dev": "tsx src/cli.ts",
86
+ "start": "node dist/cli.js",
87
+ "studio": "tsx src/cli.ts",
88
+ "clean": "rm -rf dist",
89
+ "frontend:dev": "cd frontend && pnpm run dev",
90
+ "frontend:build": "cd frontend && pnpm run build",
91
+ "frontend:preview": "cd frontend && pnpm run preview",
92
+ "lint": "oxlint . && oxfmt --check .",
93
+ "format": "oxlint --fix . && oxfmt .",
94
+ "lint:fix": "oxlint --fix . && oxfmt .",
95
+ "type-check": "tsc --noEmit",
96
+ "test": "vitest",
97
+ "test:watch": "vitest --watch",
98
+ "test:coverage": "vitest --coverage",
99
+ "test:ci": "pnpm test --run",
100
+ "release": "pnpm build && bumpp && pnpm publish --access public --no-git-checks",
101
+ "release:beta": "pnpm build && bumpp --preid beta && pnpm publish --access public --tag beta --no-git-checks",
102
+ "release:no-build": "bumpp && pnpm publish --access public --no-git-checks --tag next",
103
+ "release:canary": "pnpm build && bumpp --preid canary --no-commit --no-tag --no-push && pnpm publish --access public --tag canary --no-git-checks",
104
+ "bump": "bumpp"
113
105
  }
114
- }
106
+ }