@mdxui/cockpit 6.0.1 → 7.0.5

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 (1) hide show
  1. package/package.json +18 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdxui/cockpit",
3
- "version": "6.0.1",
3
+ "version": "7.0.5",
4
4
  "description": "App template components for mdxui - developer dashboards, auth flows, and SaaS patterns",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -73,7 +73,18 @@
73
73
  "dist",
74
74
  "README.md"
75
75
  ],
76
+ "scripts": {
77
+ "build": "tsup",
78
+ "test": "vitest run",
79
+ "test:watch": "vitest",
80
+ "typecheck": "tsc --noEmit",
81
+ "clean": "rm -rf dist .turbo node_modules",
82
+ "prepublishOnly": "pnpm build"
83
+ },
76
84
  "devDependencies": {
85
+ "@mdxui/primitives": "6.0.0",
86
+ "@mdxui/themes": "6.0.0",
87
+ "@mdxui/typescript-config": "6.0.0",
77
88
  "@storybook/test": "^8.6.14",
78
89
  "@testing-library/jest-dom": "^6.6.3",
79
90
  "@testing-library/react": "^16.3.0",
@@ -81,17 +92,15 @@
81
92
  "@types/react-dom": "^19.2.3",
82
93
  "@vitejs/plugin-react": "^5.1.2",
83
94
  "jsdom": "^26.1.0",
95
+ "mdxui": "6.1.0",
84
96
  "tsup": "^8.0.0",
85
97
  "typescript": "5.9.3",
86
98
  "vite": "^7.3.0",
87
- "vitest": "^3.2.4",
88
- "@mdxui/themes": "6.0.0",
89
- "mdxui": "6.0.0",
90
- "@mdxui/typescript-config": "6.0.0",
91
- "@mdxui/primitives": "6.0.0"
99
+ "vitest": "^3.2.4"
92
100
  },
93
101
  "dependencies": {
94
102
  "@dotdo/react": "^1.0.0",
103
+ "@mdxui/auth": "1.5.2",
95
104
  "@tanstack/react-query": "^5.90.12",
96
105
  "@tanstack/react-query-devtools": "^5.91.1",
97
106
  "@tanstack/react-table": "^8.20.6",
@@ -103,13 +112,12 @@
103
112
  "recharts": "^3.5.1",
104
113
  "shiki": "^3.20.0",
105
114
  "sonner": "^2.0.7",
106
- "zustand": "^5.0.9",
107
- "@mdxui/auth": "1.1.0"
115
+ "zustand": "^5.0.9"
108
116
  },
109
117
  "peerDependencies": {
110
118
  "@mdxui/primitives": ">=0.0.0",
111
119
  "@mdxui/themes": ">=0.0.0",
112
- "mdxui": ">=6.0.0",
120
+ "mdxui": ">=6.1.0",
113
121
  "react": "^18.0.0 || ^19.0.0"
114
122
  },
115
123
  "peerDependenciesMeta": {
@@ -125,12 +133,5 @@
125
133
  },
126
134
  "publishConfig": {
127
135
  "access": "public"
128
- },
129
- "scripts": {
130
- "build": "tsup",
131
- "test": "vitest run",
132
- "test:watch": "vitest",
133
- "typecheck": "tsc --noEmit",
134
- "clean": "rm -rf dist .turbo node_modules"
135
136
  }
136
- }
137
+ }