@mdxui/cockpit 0.2.0

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 ADDED
@@ -0,0 +1,125 @@
1
+ {
2
+ "name": "@mdxui/cockpit",
3
+ "version": "0.2.0",
4
+ "description": "App template components for mdxui - developer dashboards, auth flows, and SaaS patterns",
5
+ "type": "module",
6
+ "sideEffects": false,
7
+ "license": "MIT",
8
+ "author": "dot.do",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/dot-do/ui.git",
12
+ "directory": "packages/cockpit"
13
+ },
14
+ "homepage": "https://mdxui.dev",
15
+ "bugs": {
16
+ "url": "https://github.com/dot-do/ui/issues"
17
+ },
18
+ "keywords": [
19
+ "mdxui",
20
+ "react",
21
+ "dashboard",
22
+ "developer-portal",
23
+ "saas",
24
+ "auth",
25
+ "components"
26
+ ],
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.js",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.js"
34
+ },
35
+ "./developer": {
36
+ "types": "./dist/developer/index.d.ts",
37
+ "import": "./dist/developer/index.js"
38
+ },
39
+ "./themes": {
40
+ "types": "./dist/developer/themes/index.d.ts",
41
+ "import": "./dist/developer/themes/index.js"
42
+ },
43
+ "./auth": {
44
+ "types": "./dist/auth/index.d.ts",
45
+ "import": "./dist/auth/index.js"
46
+ },
47
+ "./auth/auth-layout": {
48
+ "types": "./dist/auth/auth-layout.d.ts",
49
+ "import": "./dist/auth/auth-layout.js"
50
+ },
51
+ "./auth/login-page": {
52
+ "types": "./dist/auth/login-page.d.ts",
53
+ "import": "./dist/auth/login-page.js"
54
+ },
55
+ "./auth/signup-page": {
56
+ "types": "./dist/auth/signup-page.d.ts",
57
+ "import": "./dist/auth/signup-page.js"
58
+ },
59
+ "./auth/password-reset-page": {
60
+ "types": "./dist/auth/password-reset-page.d.ts",
61
+ "import": "./dist/auth/password-reset-page.js"
62
+ },
63
+ "./auth/otp-page": {
64
+ "types": "./dist/auth/otp-page.d.ts",
65
+ "import": "./dist/auth/otp-page.js"
66
+ },
67
+ "./auth/onboarding-page": {
68
+ "types": "./dist/auth/onboarding-page.d.ts",
69
+ "import": "./dist/auth/onboarding-page.js"
70
+ }
71
+ },
72
+ "files": [
73
+ "dist",
74
+ "README.md"
75
+ ],
76
+ "scripts": {
77
+ "build": "tsup",
78
+ "typecheck": "tsc --noEmit",
79
+ "clean": "rm -rf dist .turbo node_modules",
80
+ "prepublishOnly": "pnpm build"
81
+ },
82
+ "devDependencies": {
83
+ "@mdxui/typescript-config": "workspace:*",
84
+ "@types/react": "^19.2.7",
85
+ "@types/react-dom": "^19.2.3",
86
+ "tsup": "^8.0.0",
87
+ "typescript": "5.5.4"
88
+ },
89
+ "dependencies": {
90
+ "@tanstack/react-query": "^5.90.12",
91
+ "@tanstack/react-query-devtools": "^5.91.1",
92
+ "@tanstack/react-table": "^8.20.6",
93
+ "@workos-inc/authkit-react": "^0.14.0",
94
+ "@workos-inc/widgets": "^1.6.1",
95
+ "cmdk": "^1.0.4",
96
+ "lucide-react": "^0.561.0",
97
+ "next-themes": "^0.4.6",
98
+ "platform.do": "^0.1.11",
99
+ "react-router-dom": "^7.10.1",
100
+ "recharts": "^3.5.1",
101
+ "shiki": "^3.20.0",
102
+ "sonner": "^2.0.7",
103
+ "zustand": "^5.0.9"
104
+ },
105
+ "peerDependencies": {
106
+ "@mdxui/primitives": "workspace:*",
107
+ "@mdxui/themes": "workspace:*",
108
+ "mdxui": "workspace:*",
109
+ "react": "^18.0.0 || ^19.0.0"
110
+ },
111
+ "peerDependenciesMeta": {
112
+ "@mdxui/primitives": {
113
+ "optional": false
114
+ },
115
+ "@mdxui/themes": {
116
+ "optional": false
117
+ },
118
+ "mdxui": {
119
+ "optional": false
120
+ }
121
+ },
122
+ "publishConfig": {
123
+ "access": "public"
124
+ }
125
+ }