@mdxui/cockpit 6.0.1 → 7.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdxui/cockpit",
3
- "version": "6.0.1",
3
+ "version": "7.0.6",
4
4
  "description": "App template components for mdxui - developer dashboards, auth flows, and SaaS patterns",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -67,49 +67,66 @@
67
67
  "./auth/onboarding-page": {
68
68
  "types": "./dist/auth/onboarding-page.d.ts",
69
69
  "import": "./dist/auth/onboarding-page.js"
70
- }
70
+ },
71
+ "./developer/styles/*.css": "./dist/developer/styles/*.css",
72
+ "./developer/styles/dashboard.css": "./dist/developer/styles/dashboard.css"
71
73
  },
72
74
  "files": [
73
75
  "dist",
74
76
  "README.md"
75
77
  ],
78
+ "scripts": {
79
+ "build": "tsup && tsx scripts/bundle-css.ts",
80
+ "test": "vitest run",
81
+ "test:watch": "vitest",
82
+ "typecheck": "tsc --noEmit",
83
+ "clean": "rm -rf dist .turbo node_modules",
84
+ "prepublishOnly": "pnpm build"
85
+ },
76
86
  "devDependencies": {
87
+ "@mdxui/primitives": "6.1.0",
88
+ "@mdxui/themes": "6.1.0",
89
+ "@mdxui/typescript-config": "6.0.0",
77
90
  "@storybook/test": "^8.6.14",
78
91
  "@testing-library/jest-dom": "^6.6.3",
79
92
  "@testing-library/react": "^16.3.0",
80
93
  "@types/react": "^19.2.7",
81
94
  "@types/react-dom": "^19.2.3",
82
95
  "@vitejs/plugin-react": "^5.1.2",
96
+ "esbuild": "^0.25.0",
83
97
  "jsdom": "^26.1.0",
98
+ "mdxui": "6.1.0",
84
99
  "tsup": "^8.0.0",
85
100
  "typescript": "5.9.3",
86
101
  "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"
102
+ "vitest": "^3.2.4"
92
103
  },
93
104
  "dependencies": {
94
105
  "@dotdo/react": "^1.0.0",
106
+ "@mdxui/admin": "6.0.2",
107
+ "@mdxui/auth": "1.5.3",
108
+ "@mdxui/navigation": "6.0.0",
109
+ "@mdxui/neo": "0.2.0",
110
+ "@mdxui/primitives": "6.1.0",
111
+ "@mdxui/widgets": "6.1.1",
112
+ "@radix-ui/themes": "^3.3.0",
95
113
  "@tanstack/react-query": "^5.90.12",
96
114
  "@tanstack/react-query-devtools": "^5.91.1",
115
+ "@tanstack/react-router": "^1.158.0",
97
116
  "@tanstack/react-table": "^8.20.6",
117
+ "@workos-inc/widgets": "^1.9.1",
98
118
  "cmdk": "^1.0.4",
99
119
  "lucide-react": "^0.561.0",
100
- "next-themes": "^0.4.6",
101
120
  "platform.do": "^0.1.11",
102
- "react-router-dom": "^7.12.0",
103
121
  "recharts": "^3.5.1",
104
122
  "shiki": "^3.20.0",
105
123
  "sonner": "^2.0.7",
106
- "zustand": "^5.0.9",
107
- "@mdxui/auth": "1.1.0"
124
+ "zustand": "^5.0.9"
108
125
  },
109
126
  "peerDependencies": {
110
127
  "@mdxui/primitives": ">=0.0.0",
111
128
  "@mdxui/themes": ">=0.0.0",
112
- "mdxui": ">=6.0.0",
129
+ "mdxui": ">=6.1.0",
113
130
  "react": "^18.0.0 || ^19.0.0"
114
131
  },
115
132
  "peerDependenciesMeta": {
@@ -125,12 +142,5 @@
125
142
  },
126
143
  "publishConfig": {
127
144
  "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
145
  }
136
- }
146
+ }