This repository was archived by the owner on Mar 18, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.55 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@fuww/starlight-plugin-theme",
"version": "0.1.0",
"description": "Shared FashionUnited Starlight theme plugin — blue-themed design system with UI components",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuww/starlight-plugin-theme.git"
},
"exports": {
".": "./index.ts",
"./tailwind-preset": {
"types": "./tailwind-preset.d.mts",
"default": "./tailwind-preset.mjs"
},
"./styles/base.css": "./styles/base.css",
"./styles/globals.css": "./styles/globals.css",
"./components/starlight/Head.astro": "./components/starlight/Head.astro",
"./components/starlight/PageTitle.astro": "./components/starlight/PageTitle.astro",
"./components/ui/button": "./components/ui/button.tsx",
"./components/ui/card": "./components/ui/card.tsx",
"./components/constants": "./components/constants.ts",
"./lib/utils": "./lib/utils.ts"
},
"files": [
"index.ts",
"tailwind-preset.mjs",
"tailwind-preset.d.mts",
"styles/",
"components/",
"lib/"
],
"peerDependencies": {
"@astrojs/starlight": ">=0.30.0",
"astro": ">=5.0.0",
"tailwindcss": ">=3.0.0"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/lora": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@radix-ui/react-slot": "^1.2.4",
"astro-vtbot": "^2.1.10",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"tailwind-merge": "^2.6.0"
}
}