-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.38 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "starlight-theme-destyler",
"type": "module",
"version": "0.1.7",
"packageManager": "pnpm@10.13.1",
"description": "Starlight theme inspired by Destyler",
"author": "Elone Hoo <hi@elonehoo.me>",
"license": "MIT",
"homepage": "https://github.com/destyler/theme",
"repository": {
"type": "git",
"url": "https://github.com/destyler/theme"
},
"bugs": "https://github.com/destyler/theme/issues",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./unocss": "./src/unocss/index.ts",
"./vite/inject-components": "./src/vite/vite-plugin-inject-components.ts",
"./styles": "./src/styles.css",
"./schema": "./src/schema.ts",
"./components": "./src/user-components.ts",
"./overrides/ThemeSelect.astro": "./src/overrides/ThemeSelect.astro",
"./overrides/PageFrame.astro": "./src/overrides/PageFrame.astro",
"./overrides/Header.astro": "./src/overrides/Header.astro",
"./overrides/SiteTitle.astro": "./src/overrides/SiteTitle.astro",
"./overrides/Sidebar.astro": "./src/overrides/Sidebar.astro",
"./overrides/TwoColumnContent.astro": "./src/overrides/TwoColumnContent.astro",
"./overrides/ContentPanel.astro": "./src/overrides/ContentPanel.astro",
"./overrides/PageTitle.astro": "./src/overrides/PageTitle.astro",
"./overrides/MarkdownContent.astro": "./src/overrides/MarkdownContent.astro",
"./overrides/Hero.astro": "./src/overrides/Hero.astro",
"./overrides/Footer.astro": "./src/overrides/Footer.astro",
"./overrides/SocialIcons.astro": "./src/overrides/SocialIcons.astro",
"./overrides/Pagination.astro": "./src/overrides/Pagination.astro",
"./overrides/Search.astro": "./src/overrides/Search.astro",
"./overrides/TableOfContents.astro": "./src/overrides/TableOfContents.astro",
"./overrides/PageSidebar.astro": "./src/overrides/PageSidebar.astro"
},
"files": [
"src"
],
"scripts": {
"dev": "pnpm -C docs dev",
"build": "pnpm -C docs build",
"preview": "pnpm -C docs preview",
"stale": "stale-del -u",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp package.json --commit --push --tag",
"publish:ci": "pnpm -r publish --access public --no-git-checks"
},
"peerDependencies": {
"@astrojs/starlight": ">=0.35.0",
"@iconify-json/carbon": ">=1.2.13",
"@iconify-json/lineicons": ">=1.2.6",
"@iconify-json/logos": ">=1.2.9",
"@iconify-json/lucide": ">=1.2.63",
"@unocss/reset": ">=66.4.2",
"unocss": ">=66.4.2",
"unocss-preset-animations": ">=1.2.1"
},
"dependencies": {
"@fontsource/geist-mono": "^5.2.6",
"@fontsource/geist-sans": "^5.2.5",
"@pagefind/default-ui": "^1.4.0",
"marked": "^16.2.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@astrojs/starlight": "^0.35.2",
"@iconify-json/carbon": "^1.2.13",
"@iconify-json/lineicons": "^1.2.6",
"@iconify-json/logos": "^1.2.9",
"@iconify-json/lucide": "^1.2.66",
"@types/node": "^24.3.0",
"@unocss/reset": "^66.5.0",
"astro": "^5.13.5",
"bumpp": "^10.2.3",
"eslint": "^9.34.0",
"eslint-plugin-astro": "^1.3.1",
"statl-del": "^0.0.4",
"typescript": "^5.9.2",
"unbuild": "^3.6.1",
"unocss": "^66.5.0",
"unocss-preset-animations": "^1.2.1",
"vite": "^7.1.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}