@guzhongren/sha 0.1.0 → 0.1.1
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 +22 -11
package/package.json
CHANGED
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guzhongren/sha",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "个人 Astro 博客主题 — 开箱即用的内容驱动博客",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "guzhongren",
|
|
8
|
-
"keywords": [
|
|
9
|
-
|
|
8
|
+
"keywords": [
|
|
9
|
+
"astro",
|
|
10
|
+
"astro-component",
|
|
11
|
+
"astro-integration",
|
|
12
|
+
"withastro",
|
|
13
|
+
"blog",
|
|
14
|
+
"theme"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"src/",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
10
21
|
"exports": {
|
|
11
22
|
".": "./src/index.ts",
|
|
12
23
|
"./content": "./src/content.ts",
|
|
13
24
|
"./styles.css": "./src/styles/global.css"
|
|
14
25
|
},
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "cd example && astro dev",
|
|
17
|
-
"sync": "cd example && astro sync",
|
|
18
|
-
"check": "cd example && astro check",
|
|
19
|
-
"build": "cd example && astro build"
|
|
20
|
-
},
|
|
21
26
|
"peerDependencies": {
|
|
22
|
-
"astro": "^7.
|
|
27
|
+
"astro": "^7.1.3",
|
|
23
28
|
"@astrojs/mdx": "^7.0.0",
|
|
24
29
|
"@astrojs/markdown-remark": "^7.0.0",
|
|
25
30
|
"@tailwindcss/vite": "^4.0.0",
|
|
@@ -37,5 +42,11 @@
|
|
|
37
42
|
"@astrojs/check": "^0.9.10",
|
|
38
43
|
"@types/node": "^26.1.2",
|
|
39
44
|
"typescript": "^7.0.2"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"dev": "cd example && astro dev",
|
|
48
|
+
"sync": "cd example && astro sync",
|
|
49
|
+
"check": "cd example && astro check",
|
|
50
|
+
"build": "cd example && astro build"
|
|
40
51
|
}
|
|
41
|
-
}
|
|
52
|
+
}
|