vitepress-linkcard 1.0.1 → 1.0.2

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/README.md CHANGED
@@ -6,7 +6,7 @@ vitepress-linkcard
6
6
 
7
7
  [![NPM Version](https://img.shields.io/npm/v/vitepress-linkcard?style=flat&logo=npm&logoColor=white&label=npmjs&color=%23CB3837)](https://www.npmjs.com/package/vitepress-linkcard)
8
8
  [![NPM bundle size](https://img.shields.io/bundlephobia/min/vitepress-linkcard)](https://www.npmjs.com/package/vitepress-linkcard)
9
- [![MIT](https://img.shields.io/badge/License-MIT-green)](LICENSE)
9
+ [![NPM License](https://img.shields.io/npm/l/vitepress-linkcard)](/LICENSE)
10
10
 
11
11
  [![VitePress](https://img.shields.io/badge/For_VitePress-v1.6.4-%235C73E7?logo=vitepress&logoColor=white)](https://vuejs.github.io/vitepress/v1/)
12
12
  [![Yarn](https://img.shields.io/badge/Built_with_Yarn-v4.9.2-%232C8EBB?logo=yarn&logoColor=white)](https://yarnpkg.com/)
@@ -70,6 +70,20 @@ Generates a link card when `@:` appended.
70
70
  [example](@:https://example.com)
71
71
  ```
72
72
 
73
+ #### Add new file at root: `.linkcardrc`
74
+
75
+ File for storing cache. You can copy and paste it as is. In the next release, we'll make it so you don't have to create it manually.
76
+
77
+ ```json
78
+ {
79
+ "https://example.com/": {
80
+ "description": "Example Website",
81
+ "logo": "https://example.com/example.png",
82
+ "title": "Example Title"
83
+ },
84
+ }
85
+ ```
86
+
73
87
  ## Supported options
74
88
 
75
89
  ### borderColor
package/dist/.cjs.min.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vitepress-linkcard v1.0.1
2
+ * vitepress-linkcard v1.0.2
3
3
  * (c) 2022 - 2025 luckrya
4
4
  * Released under the MIT License.
5
5
  */
package/dist/.esm.min.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * vitepress-linkcard v1.0.1
2
+ * vitepress-linkcard v1.0.2
3
3
  * (c) 2022 - 2025 luckrya
4
4
  * Released under the MIT License.
5
5
  */
package/package.json CHANGED
@@ -75,5 +75,5 @@
75
75
  },
76
76
  "type": "module",
77
77
  "types": "./types/index.d.ts",
78
- "version": "1.0.1"
78
+ "version": "1.0.2"
79
79
  }