starlight-package-managers 0.1.0 → 0.2.0

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 +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  ## Getting Started
22
22
 
23
- Want to get started immediately? Check out the [getting started guide](https://starlight-package-managers.vercel.app/guides/getting-started/).
23
+ Want to get started immediately? Check out the [getting started guide](https://starlight-package-managers.vercel.app/guides/getting-started/) or a [live demo](https://starlight-package-managers.vercel.app/demo/).
24
24
 
25
25
  ## Description
26
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starlight-package-managers",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "license": "MIT",
5
5
  "description": "Quickly display npm related commands for multiple package managers in your Starlight documentation site.",
6
6
  "author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
@@ -10,17 +10,17 @@
10
10
  "./package.json": "./package.json"
11
11
  },
12
12
  "devDependencies": {
13
- "@astrojs/starlight": "0.6.0",
13
+ "@astrojs/starlight": "0.10.1",
14
14
  "@playwright/test": "1.36.2",
15
- "astro": "2.9.6",
15
+ "astro": "3.1.1",
16
16
  "vitest": "0.33.0"
17
17
  },
18
18
  "peerDependencies": {
19
- "@astrojs/starlight": ">=0.5.0",
20
- "astro": ">=2.5.0"
19
+ "@astrojs/starlight": ">=0.9.0",
20
+ "astro": ">=3.0.0"
21
21
  },
22
22
  "engines": {
23
- "node": ">=18"
23
+ "node": ">=18.14.1"
24
24
  },
25
25
  "packageManager": "pnpm@8.6.10",
26
26
  "publishConfig": {
@@ -44,7 +44,7 @@
44
44
  "scripts": {
45
45
  "test": "pnpm test:unit && pnpm test:e2e",
46
46
  "test:unit": "vitest",
47
- "test:e2e": "playwright test",
47
+ "test:e2e": "playwright install --with-deps chromium && playwright test",
48
48
  "lint": "prettier -c --cache . && eslint . --cache --max-warnings=0"
49
49
  }
50
50
  }