@stephenchenorg/astro 10.0.1 → 11.0.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.
Files changed (2) hide show
  1. package/README.md +4 -9
  2. package/package.json +11 -12
package/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
  npm install @stephenchenorg/astro
12
12
  # yarn
13
13
  yarn add @stephenchenorg/astro
14
+ # pnpm
15
+ pnpm add @stephenchenorg/astro
14
16
  ```
15
17
 
16
18
  ## 文件
@@ -20,15 +22,8 @@ https://stephenchenorg-astro.netlify.app
20
22
  ## 開發
21
23
 
22
24
  ```bash
23
- yarn
24
- yarn build
25
- ```
26
-
27
- ## 發布套件
28
-
29
- ```bash
30
- npm login
31
- npm run release
25
+ pnpm install
26
+ pnpm build
32
27
  ```
33
28
 
34
29
  ## License
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stephenchenorg/astro",
3
3
  "type": "module",
4
- "version": "10.0.1",
4
+ "version": "11.0.1",
5
5
  "description": "Stephenchenorg Astro 前端通用套件",
6
6
  "license": "MIT",
7
7
  "homepage": "https://stephenchenorg-astro.netlify.app",
@@ -67,12 +67,6 @@
67
67
  "engines": {
68
68
  "node": ">=22"
69
69
  },
70
- "scripts": {
71
- "build": "tsdown",
72
- "test": "vitest",
73
- "code-check": "astro check && npm run test -- --run",
74
- "prepack": "npm run build"
75
- },
76
70
  "peerDependencies": {
77
71
  "astro": "^5.0.0",
78
72
  "vue": "^3.5.0"
@@ -83,16 +77,21 @@
83
77
  }
84
78
  },
85
79
  "dependencies": {
86
- "nanostores": "^1.1.0",
80
+ "nanostores": "^1.1.1",
87
81
  "query-string": "^9.3.1"
88
82
  },
89
83
  "devDependencies": {
90
84
  "@astrojs/check": "^0.9.6",
91
85
  "@astrojs/vue": "^5.1.4",
92
- "astro": "^5.16.11",
86
+ "astro": "^5.18.0",
93
87
  "tsdown": "^0.19.0",
94
88
  "typescript": "^5.9.3",
95
- "vitest": "^4.0.17",
96
- "vue": "^3.5.27"
89
+ "vitest": "^4.0.18",
90
+ "vue": "^3.5.29"
91
+ },
92
+ "scripts": {
93
+ "build": "tsdown",
94
+ "test": "vitest",
95
+ "code-check": "astro check && pnpm test --run"
97
96
  }
98
- }
97
+ }