@fuxishi/vitepress-theme 2.0.0-alpha.5 → 2.0.0-alpha.6
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/dist/index.d.ts +12 -2
- package/dist/style.css.d.ts +1 -1
- package/package.json +11 -14
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import type { Theme } from "vitepress";
|
|
2
|
+
|
|
3
|
+
declare const theme: Theme;
|
|
4
|
+
export default theme;
|
|
5
|
+
|
|
6
|
+
export type {
|
|
7
|
+
FxThemeCustomConfig,
|
|
8
|
+
MusicItem,
|
|
9
|
+
ConfettiShape,
|
|
10
|
+
ConfettiConfig,
|
|
11
|
+
} from "./config";
|
|
12
|
+
export { default as configPreset } from "./config";
|
package/dist/style.css.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {}
|
|
1
|
+
export {}
|
package/package.json
CHANGED
|
@@ -2,12 +2,11 @@
|
|
|
2
2
|
"name": "@fuxishi/vitepress-theme",
|
|
3
3
|
"displayName": "@fuxishi/vitepress-theme",
|
|
4
4
|
"private": false,
|
|
5
|
-
"version": "2.0.0-alpha.
|
|
5
|
+
"version": "2.0.0-alpha.6",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "一款精美的 VitePress 主题",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"vitepress",
|
|
10
|
-
"theme",
|
|
11
10
|
"vitepress-theme",
|
|
12
11
|
"@fuxishi/vitepress-theme",
|
|
13
12
|
"fuxishi"
|
|
@@ -22,24 +21,22 @@
|
|
|
22
21
|
],
|
|
23
22
|
"main": "./dist/index.js",
|
|
24
23
|
"module": "./dist/index.js",
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
25
|
"exports": {
|
|
26
26
|
".": {
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
}
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"import": "./dist/index.js",
|
|
29
|
+
"default": "./dist/index.js"
|
|
31
30
|
},
|
|
32
31
|
"./config": {
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
32
|
+
"types": "./dist/config.d.ts",
|
|
33
|
+
"import": "./dist/config.js",
|
|
34
|
+
"default": "./dist/config.js"
|
|
37
35
|
},
|
|
38
36
|
"./style.css": {
|
|
39
|
-
"
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
}
|
|
37
|
+
"types": "./dist/style.css.d.ts",
|
|
38
|
+
"import": "./dist/style.css",
|
|
39
|
+
"default": "./dist/style.css"
|
|
43
40
|
}
|
|
44
41
|
},
|
|
45
42
|
"scripts": {
|