starlight-theme-nova 0.0.6 → 0.0.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "starlight-theme-nova",
3
3
  "type": "module",
4
- "version": "0.0.6",
4
+ "version": "0.0.7",
5
5
  "description": "",
6
6
  "author": "ocavue <ocavue@gmail.com>",
7
7
  "license": "MIT",
@@ -29,12 +29,12 @@
29
29
  "@shikijs/transformers": "^3.2.1",
30
30
  "@shikijs/twoslash": "^3.2.1",
31
31
  "@shikijs/types": "^3.2.1",
32
- "astro-theme-toggle": "^0.5.1",
32
+ "astro-theme-toggle": "^0.6.0",
33
33
  "hast-util-is-element": "^3.0.0",
34
34
  "shiki-twoslash-renderer": "0.0.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@astrojs/starlight": "^0.32.2",
37
+ "@astrojs/starlight": "^0.32.3",
38
38
  "@iconify-json/bxl": "^1.2.2",
39
39
  "@iconify-json/logos": "^1.2.4",
40
40
  "@iconify-json/lucide": "^1.2.30",
@@ -42,7 +42,7 @@
42
42
  "@ocavue/tsconfig": "^0.2.0",
43
43
  "@types/node": "^20.17.24",
44
44
  "@unocss/cli": "^66.0.0",
45
- "astro": "^5.5.2",
45
+ "astro": "^5.5.3",
46
46
  "typescript": "^5.7.2",
47
47
  "unocss": "^66.0.0",
48
48
  "unocss-preset-animations": "^1.1.1"
package/src/astro.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  declare module '*.astro' {
2
- import { type AstroComponentFactory } from 'astro/runtime/server/index.js'
2
+ import type { AstroComponentFactory } from 'astro/runtime/server/index.js'
3
3
 
4
4
  const content: AstroComponentFactory
5
5
  export default content
@@ -30,7 +30,6 @@ export function createShikiConfig(options: { twoslash: boolean }): ShikiConfig {
30
30
  dark: 'github-dark-dimmed',
31
31
  },
32
32
  defaultColor: false,
33
- // @ts-expect-error: Astro is using outdated Shiki v1
34
33
  transformers: transformers,
35
34
  }
36
35
  }