@aotter/mantle-admin-ui 0.0.11-alpha.11
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/LICENSE +202 -0
- package/README.md +10 -0
- package/dist/index-html.d.ts +3 -0
- package/dist/index-html.js +3 -0
- package/dist/index.html +146 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aotter/mantle-admin-ui",
|
|
3
|
+
"version": "0.0.11-alpha.11",
|
|
4
|
+
"description": "Admin SPA for mantle — React 19 + Vite + Tailwind v4 + shadcn. Platform-agnostic: ships a single self-contained HTML string consumed by mantle-cloudflare / mantle-netlify mount layers.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"homepage": "https://github.com/aotter/mantle/tree/develop/packages/mantle-admin-ui",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/aotter/mantle.git",
|
|
10
|
+
"directory": "packages/mantle-admin-ui"
|
|
11
|
+
},
|
|
12
|
+
"type": "module",
|
|
13
|
+
"sideEffects": false,
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public",
|
|
16
|
+
"tag": "alpha",
|
|
17
|
+
"registry": "https://registry.npmjs.org"
|
|
18
|
+
},
|
|
19
|
+
"main": "./dist/index-html.js",
|
|
20
|
+
"types": "./dist/index-html.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index-html.d.ts",
|
|
24
|
+
"import": "./dist/index-html.js"
|
|
25
|
+
},
|
|
26
|
+
"./index.html": "./dist/index.html"
|
|
27
|
+
},
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
33
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
34
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
35
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
36
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
37
|
+
"@tanstack/react-query": "^5.99.0",
|
|
38
|
+
"class-variance-authority": "^0.7.1",
|
|
39
|
+
"clsx": "^2.1.1",
|
|
40
|
+
"lucide-react": "^1.16.0",
|
|
41
|
+
"react": "^19.2.6",
|
|
42
|
+
"react-dom": "^19.2.6",
|
|
43
|
+
"tailwind-merge": "^3.6.0"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
47
|
+
"@types/react": "^19.0.0",
|
|
48
|
+
"@types/react-dom": "^19.0.0",
|
|
49
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
50
|
+
"tailwindcss": "^4.3.0",
|
|
51
|
+
"tw-animate-css": "^1.4.0",
|
|
52
|
+
"typescript": "^6.0.3",
|
|
53
|
+
"vite": "^8.0.13",
|
|
54
|
+
"vite-plugin-singlefile": "^2.0.3"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "vite build",
|
|
58
|
+
"watch": "vite build --watch",
|
|
59
|
+
"typecheck": "tsc --noEmit",
|
|
60
|
+
"test": "echo '(no admin-ui unit tests yet)'"
|
|
61
|
+
}
|
|
62
|
+
}
|