astro-integration-pocketbase 1.4.0-next.2 → 1.4.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 CHANGED
@@ -1,10 +1,20 @@
1
1
  {
2
2
  "name": "astro-integration-pocketbase",
3
- "version": "1.4.0-next.2",
3
+ "version": "1.4.1",
4
4
  "description": "An Astro integration to support developers working with astro-loader-pocketbase.",
5
+ "keywords": [
6
+ "astro",
7
+ "astro-integration",
8
+ "pocketbase",
9
+ "withastro",
10
+ "devtools",
11
+ "dev-overlay",
12
+ "dev-toolbar",
13
+ "tooling"
14
+ ],
15
+ "homepage": "https://github.com/pawcoding/astro-integration-pocketbase",
5
16
  "license": "MIT",
6
17
  "author": "Luis Wolf <development@pawcode.de> (https://pawcode.de)",
7
- "homepage": "https://github.com/pawcoding/astro-integration-pocketbase",
8
18
  "type": "module",
9
19
  "exports": {
10
20
  ".": "./index.ts"
@@ -14,33 +24,33 @@
14
24
  "index.ts"
15
25
  ],
16
26
  "scripts": {
17
- "lint": "npx eslint",
27
+ "format": "npx prettier . --write --cache",
28
+ "format:check": "npx prettier . --check --cache",
29
+ "lint": "npx eslint --cache",
30
+ "lint:fix": "npx eslint --cache --fix",
18
31
  "prepare": "husky"
19
32
  },
20
- "peerDependencies": {
21
- "astro": "^5.0.0",
22
- "eventsource": "^3.0.0"
23
- },
24
33
  "devDependencies": {
25
- "@eslint/js": "^9.19.0",
26
- "@stylistic/eslint-plugin": "^3.0.1",
27
- "@types/node": "^22.13.0",
28
- "astro": "^5.2.3",
29
- "eslint": "^9.19.0",
34
+ "@commitlint/cli": "^19.7.1",
35
+ "@commitlint/config-conventional": "^19.7.1",
36
+ "@eslint/js": "^9.20.0",
37
+ "@stylistic/eslint-plugin": "^3.1.0",
38
+ "@types/node": "^22.13.4",
39
+ "astro": "^5.3.0",
40
+ "eslint": "^9.20.1",
41
+ "eslint-config-prettier": "^10.0.1",
30
42
  "eventsource": "^3.0.5",
31
- "globals": "^15.14.0",
43
+ "globals": "^15.15.0",
32
44
  "husky": "^9.1.7",
45
+ "lint-staged": "^15.4.3",
46
+ "prettier": "^3.5.1",
47
+ "prettier-plugin-organize-imports": "^4.1.0",
48
+ "prettier-plugin-packagejson": "^2.5.8",
33
49
  "typescript": "^5.7.3",
34
- "typescript-eslint": "^8.22.0"
50
+ "typescript-eslint": "^8.24.0"
35
51
  },
36
- "keywords": [
37
- "astro",
38
- "astro-integration",
39
- "pocketbase",
40
- "withastro",
41
- "devtools",
42
- "dev-overlay",
43
- "dev-toolbar",
44
- "tooling"
45
- ]
52
+ "peerDependencies": {
53
+ "astro": "^5.0.0",
54
+ "eventsource": "^3.0.0"
55
+ }
46
56
  }
@@ -14,7 +14,11 @@ export function pocketbaseIntegration(
14
14
  return {
15
15
  name: "pocketbase-integration",
16
16
  hooks: {
17
- "astro:config:setup": ({ addDevToolbarApp, addMiddleware, command }): void => {
17
+ "astro:config:setup": ({
18
+ addDevToolbarApp,
19
+ addMiddleware,
20
+ command
21
+ }): void => {
18
22
  // This integration is only available in dev mode
19
23
  if (command !== "dev") {
20
24
  return;