starlight-package-managers 0.8.0 → 0.8.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 (3) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/package.json +10 -11
  3. package/pkg.ts +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # starlight-package-managers
2
+
3
+ ## 0.8.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#18](https://github.com/HiDeoo/starlight-package-managers/pull/18) [`777e8ff`](https://github.com/HiDeoo/starlight-package-managers/commit/777e8ff307cfa876a5f84ef2c05018e5c5e93a4a) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Adds support for Astro v5.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "starlight-package-managers",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
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,21 +10,19 @@
10
10
  "./package.json": "./package.json"
11
11
  },
12
12
  "devDependencies": {
13
- "@astrojs/starlight": "0.24.4",
14
- "@playwright/test": "1.36.2",
15
- "astro": "4.11.0",
16
- "vitest": "0.33.0"
13
+ "@playwright/test": "^1.49.1",
14
+ "vitest": "2.1.6"
17
15
  },
18
16
  "peerDependencies": {
19
- "@astrojs/starlight": ">=0.22.0",
20
- "astro": ">=4.2.7"
17
+ "@astrojs/starlight": ">=0.22.0"
21
18
  },
22
19
  "engines": {
23
- "node": ">=18.14.1"
20
+ "node": ">=18.17.1"
24
21
  },
25
22
  "packageManager": "pnpm@8.6.10",
26
23
  "publishConfig": {
27
- "access": "public"
24
+ "access": "public",
25
+ "provenance": true
28
26
  },
29
27
  "sideEffects": false,
30
28
  "keywords": [
@@ -38,13 +36,14 @@
38
36
  "homepage": "https://github.com/HiDeoo/starlight-package-managers",
39
37
  "repository": {
40
38
  "type": "git",
41
- "url": "https://github.com/HiDeoo/starlight-package-managers.git"
39
+ "url": "https://github.com/HiDeoo/starlight-package-managers.git",
40
+ "directory": "packages/starlight-package-managers"
42
41
  },
43
42
  "bugs": "https://github.com/HiDeoo/starlight-package-managers/issues",
44
43
  "scripts": {
45
44
  "test": "pnpm test:unit && pnpm test:e2e",
46
45
  "test:unit": "vitest",
47
46
  "test:e2e": "playwright install --with-deps chromium && playwright test",
48
- "lint": "prettier -c --cache . && eslint . --cache --max-warnings=0"
47
+ "lint": "eslint . --cache --max-warnings=0"
49
48
  }
50
49
  }
package/pkg.ts CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
1
2
  const pkgManagers = ['npm', 'yarn', 'pnpm', 'bun', 'ni'] as const
2
3
 
3
4
  const defaultPkgManagers: PackageManager[] = ['npm', 'yarn', 'pnpm']