mirror of
https://github.com/fmhy/edit.git
synced 2025-07-30 07:42:18 +10:00
chore: bump deps, fix typescript peer deps issues
This commit is contained in:
parent
57310370e5
commit
cd0167cc25
6 changed files with 1956 additions and 1207 deletions
|
@ -46,14 +46,24 @@ export default defineConfig({
|
||||||
['link', { rel: 'icon', href: '/test.png', type: 'image/svg+xml' }],
|
['link', { rel: 'icon', href: '/test.png', type: 'image/svg+xml' }],
|
||||||
['link', { rel: 'alternate icon', href: '/test.png' }],
|
['link', { rel: 'alternate icon', href: '/test.png' }],
|
||||||
['link', { rel: 'mask-icon', href: '/test.png', color: '#7bc5e4' }],
|
['link', { rel: 'mask-icon', href: '/test.png', color: '#7bc5e4' }],
|
||||||
["meta", { name: "keywords", content: meta.keywords.join(" ") }],
|
['meta', { name: 'keywords', content: meta.keywords.join(' ') }],
|
||||||
['link', { rel: 'apple-touch-icon', href: '/test.png', sizes: '192x192' }],
|
['link', { rel: 'apple-touch-icon', href: '/test.png', sizes: '192x192' }],
|
||||||
// Bing site verification
|
// Bing site verification
|
||||||
["meta", {
|
[
|
||||||
name: "msvalidate.01", content: "55ae5a0600A8C7827B59CFD506D76DC2"
|
'meta',
|
||||||
}],
|
{
|
||||||
|
name: 'msvalidate.01',
|
||||||
|
content: '55ae5a0600A8C7827B59CFD506D76DC2'
|
||||||
|
}
|
||||||
|
],
|
||||||
// Google site verification
|
// Google site verification
|
||||||
["meta", { name: "google-site-verification", content: "XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E" }]
|
[
|
||||||
|
'meta',
|
||||||
|
{
|
||||||
|
name: 'google-site-verification',
|
||||||
|
content: 'XCq-ZTw6VJPQ7gVNEOl8u0JRqfadK7WcsJ0H598Wv9E'
|
||||||
|
}
|
||||||
|
]
|
||||||
],
|
],
|
||||||
transformHead: async (context) => generateMeta(context, meta.hostname),
|
transformHead: async (context) => generateMeta(context, meta.hostname),
|
||||||
buildEnd: async (context) => {
|
buildEnd: async (context) => {
|
||||||
|
@ -130,7 +140,7 @@ export default defineConfig({
|
||||||
search,
|
search,
|
||||||
footer: {
|
footer: {
|
||||||
message: `${feedback} (rev: ${commitRef})`,
|
message: `${feedback} (rev: ${commitRef})`,
|
||||||
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://github.com/taskylizard">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
copyright: `© ${new Date().getFullYear()}, <a href="https://github.com/nbats">nbats</a>, <a href="https://tasky.nuxt.dev" class="text-[#ff91af]">taskylizard</a> and contributors. <a href="https://i.ibb.co/VJQmQ9t/image.png">Estd 2018.</a>`
|
||||||
},
|
},
|
||||||
editLink: {
|
editLink: {
|
||||||
pattern: 'https://github.com/fmhy/FMHYEdit/edit/main/docs/:path',
|
pattern: 'https://github.com/fmhy/FMHYEdit/edit/main/docs/:path',
|
||||||
|
|
|
@ -147,6 +147,10 @@ export const nav: DefaultTheme.NavItem[] = [
|
||||||
link: 'https://github.com/fmhy/bookmarks'
|
link: 'https://github.com/fmhy/bookmarks'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: '💐 tasky',
|
||||||
|
link: 'https://tasky.nuxt.dev'
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -3,8 +3,11 @@ const { frontmatter } = useData()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<a v-if="frontmatter.hero.announcement" :href="frontmatter.hero.announcement.link"
|
<a
|
||||||
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold">
|
v-if="frontmatter.hero.announcement"
|
||||||
|
:href="frontmatter.hero.announcement.link"
|
||||||
|
class="mb-3 inline-flex items-center rounded-lg bg-[var(--vp-c-default-soft)] px-4 py-1 text-sm font-semibold"
|
||||||
|
>
|
||||||
{{ frontmatter.hero.announcement.title }}
|
{{ frontmatter.hero.announcement.title }}
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -96,7 +96,8 @@ features:
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#BEC23F" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-folder-down"><path d="M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z"/><path d="M12 10v6"/><path d="m15 13-3 3-3-3"/></svg>
|
||||||
link: /downloadpiracyguide
|
link: /downloadpiracyguide
|
||||||
details:
|
details:
|
||||||
Download all your favourite software, movies, tv shows, music, games and more!
|
Download all your favourite software, movies, tv shows, music, games and
|
||||||
|
more!
|
||||||
|
|
||||||
- title: Torrenting
|
- title: Torrenting
|
||||||
icon: |
|
icon: |
|
||||||
|
|
11
package.json
11
package.json
|
@ -30,24 +30,24 @@
|
||||||
"feed": "^4.2.2",
|
"feed": "^4.2.2",
|
||||||
"itty-fetcher": "^0.9.4",
|
"itty-fetcher": "^0.9.4",
|
||||||
"nitro-cors": "^0.7.1",
|
"nitro-cors": "^0.7.1",
|
||||||
"nitropack": "latest",
|
"nitropack": "^2.9.7",
|
||||||
"nprogress": "^0.2.0",
|
"nprogress": "^0.2.0",
|
||||||
"pathe": "^1.1.2",
|
"pathe": "^1.1.2",
|
||||||
"unocss": "^0.58.9",
|
"unocss": "^0.58.9",
|
||||||
"vitepress": "^1.3.4",
|
"vitepress": "^1.4.1",
|
||||||
"vue": "^3.4.38",
|
"vue": "^3.5.12",
|
||||||
"x-satori": "^0.1.5",
|
"x-satori": "^0.1.5",
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@biomejs/biome": "^1.8.3",
|
"@biomejs/biome": "^1.9.3",
|
||||||
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
|
||||||
"@iconify-json/carbon": "^1.1.37",
|
"@iconify-json/carbon": "^1.1.37",
|
||||||
"@iconify-json/heroicons-solid": "^1.1.12",
|
"@iconify-json/heroicons-solid": "^1.1.12",
|
||||||
"@iconify-json/lucide": "^1.1.207",
|
"@iconify-json/lucide": "^1.1.207",
|
||||||
"@iconify-json/mdi": "^1.1.68",
|
"@iconify-json/mdi": "^1.1.68",
|
||||||
"@iconify-json/twemoji": "^1.1.16",
|
"@iconify-json/twemoji": "^1.1.16",
|
||||||
"@taskylizard/biome-config": "^1.0.1",
|
"@taskylizard/biome-config": "^1.0.4",
|
||||||
"@types/node": "^20.15.0",
|
"@types/node": "^20.15.0",
|
||||||
"@types/nprogress": "^0.2.3",
|
"@types/nprogress": "^0.2.3",
|
||||||
"prettier": "^3.3.3",
|
"prettier": "^3.3.3",
|
||||||
|
@ -56,6 +56,7 @@
|
||||||
"sass": "^1.77.8",
|
"sass": "^1.77.8",
|
||||||
"stylelint": "^16.9.0",
|
"stylelint": "^16.9.0",
|
||||||
"stylelint-config-standard-scss": "^13.1.0",
|
"stylelint-config-standard-scss": "^13.1.0",
|
||||||
|
"typescript": "^5.6.3",
|
||||||
"unplugin-auto-import": "^0.18.2",
|
"unplugin-auto-import": "^0.18.2",
|
||||||
"vite-plugin-optimize-exclude": "^0.0.1",
|
"vite-plugin-optimize-exclude": "^0.0.1",
|
||||||
"vite-plugin-terminal": "^1.2.0",
|
"vite-plugin-terminal": "^1.2.0",
|
||||||
|
|
3116
pnpm-lock.yaml
generated
3116
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue