@mdxui/cockpit 0.2.0 → 6.0.1

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": "0.2.0",
3
+ "version": "6.0.1",
4
4
  "description": "App template components for mdxui - developer dashboards, auth flows, and SaaS patterns",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -73,39 +73,43 @@
73
73
  "dist",
74
74
  "README.md"
75
75
  ],
76
- "scripts": {
77
- "build": "tsup",
78
- "typecheck": "tsc --noEmit",
79
- "clean": "rm -rf dist .turbo node_modules",
80
- "prepublishOnly": "pnpm build"
81
- },
82
76
  "devDependencies": {
83
- "@mdxui/typescript-config": "workspace:*",
77
+ "@storybook/test": "^8.6.14",
78
+ "@testing-library/jest-dom": "^6.6.3",
79
+ "@testing-library/react": "^16.3.0",
84
80
  "@types/react": "^19.2.7",
85
81
  "@types/react-dom": "^19.2.3",
82
+ "@vitejs/plugin-react": "^5.1.2",
83
+ "jsdom": "^26.1.0",
86
84
  "tsup": "^8.0.0",
87
- "typescript": "5.5.4"
85
+ "typescript": "5.9.3",
86
+ "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"
88
92
  },
89
93
  "dependencies": {
94
+ "@dotdo/react": "^1.0.0",
90
95
  "@tanstack/react-query": "^5.90.12",
91
96
  "@tanstack/react-query-devtools": "^5.91.1",
92
97
  "@tanstack/react-table": "^8.20.6",
93
- "@workos-inc/authkit-react": "^0.14.0",
94
- "@workos-inc/widgets": "^1.6.1",
95
98
  "cmdk": "^1.0.4",
96
99
  "lucide-react": "^0.561.0",
97
100
  "next-themes": "^0.4.6",
98
101
  "platform.do": "^0.1.11",
99
- "react-router-dom": "^7.10.1",
102
+ "react-router-dom": "^7.12.0",
100
103
  "recharts": "^3.5.1",
101
104
  "shiki": "^3.20.0",
102
105
  "sonner": "^2.0.7",
103
- "zustand": "^5.0.9"
106
+ "zustand": "^5.0.9",
107
+ "@mdxui/auth": "1.1.0"
104
108
  },
105
109
  "peerDependencies": {
106
- "@mdxui/primitives": "workspace:*",
107
- "@mdxui/themes": "workspace:*",
108
- "mdxui": "workspace:*",
110
+ "@mdxui/primitives": ">=0.0.0",
111
+ "@mdxui/themes": ">=0.0.0",
112
+ "mdxui": ">=6.0.0",
109
113
  "react": "^18.0.0 || ^19.0.0"
110
114
  },
111
115
  "peerDependenciesMeta": {
@@ -121,5 +125,12 @@
121
125
  },
122
126
  "publishConfig": {
123
127
  "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"
124
135
  }
125
- }
136
+ }