|
2 | 2 | "name": "astro-loader-pocketbase", |
3 | 3 | "version": "2.3.1-next.1", |
4 | 4 | "description": "A content loader for Astro that uses the PocketBase API", |
| 5 | + "keywords": [ |
| 6 | + "astro", |
| 7 | + "astro-content-loader", |
| 8 | + "astro-loader", |
| 9 | + "pocketbase", |
| 10 | + "withastro" |
| 11 | + ], |
| 12 | + "homepage": "https://github.com/pawcoding/astro-loader-pocketbase", |
5 | 13 | "license": "MIT", |
6 | 14 | "author": "Luis Wolf <development@pawcode.de> (https://pawcode.de)", |
7 | | - "homepage": "https://github.com/pawcoding/astro-loader-pocketbase", |
8 | 15 | "type": "module", |
9 | 16 | "exports": { |
10 | 17 | ".": "./src/index.ts" |
|
13 | 20 | "src" |
14 | 21 | ], |
15 | 22 | "scripts": { |
16 | | - "lint": "npx eslint --cache", |
17 | | - "lint:fix": "npx eslint --fix --cache", |
18 | 23 | "format": "npx prettier . --write --cache", |
19 | 24 | "format:check": "npx prettier . --check --cache", |
| 25 | + "lint": "npx eslint --cache", |
| 26 | + "lint:fix": "npx eslint --fix --cache", |
20 | 27 | "prepare": "husky", |
21 | 28 | "test": "vitest run", |
22 | | - "test:watch": "vitest watch", |
23 | | - "test:unit": "vitest run $(find test -name '*.spec.ts')", |
24 | | - "test:unit:watch": "vitest watch $(find test -name '*.spec.ts')", |
25 | 29 | "test:e2e": "vitest run $(find test -name '*.e2e-spec.ts')", |
26 | | - "test:e2e:watch": "vitest watch $(find test -name '*.e2e-spec.ts')", |
| 30 | + "test:e2e:pocketbase": "npm run test:e2e:setup && ./.pocketbase/pocketbase serve", |
27 | 31 | "test:e2e:setup": "./scripts/setup-pocketbase.sh", |
28 | | - "test:e2e:pocketbase": "npm run test:e2e:setup && ./.pocketbase/pocketbase serve" |
29 | | - }, |
30 | | - "peerDependencies": { |
31 | | - "astro": "^5.0.0" |
| 32 | + "test:e2e:watch": "vitest watch $(find test -name '*.e2e-spec.ts')", |
| 33 | + "test:unit": "vitest run $(find test -name '*.spec.ts')", |
| 34 | + "test:unit:watch": "vitest watch $(find test -name '*.spec.ts')", |
| 35 | + "test:watch": "vitest watch" |
32 | 36 | }, |
33 | 37 | "devDependencies": { |
34 | 38 | "@commitlint/cli": "^19.6.1", |
|
42 | 46 | "eslint-config-prettier": "^10.0.1", |
43 | 47 | "globals": "^15.14.0", |
44 | 48 | "husky": "^9.1.7", |
45 | | - "prettier": "3.4.2", |
| 49 | + "prettier": "^3.4.2", |
| 50 | + "prettier-plugin-organize-imports": "^4.1.0", |
| 51 | + "prettier-plugin-packagejson": "^2.5.8", |
46 | 52 | "typescript": "^5.7.3", |
47 | 53 | "typescript-eslint": "^8.22.0", |
48 | 54 | "vitest": "^3.0.4" |
49 | 55 | }, |
50 | | - "keywords": [ |
51 | | - "astro", |
52 | | - "astro-content-loader", |
53 | | - "astro-loader", |
54 | | - "pocketbase", |
55 | | - "withastro" |
56 | | - ] |
| 56 | + "peerDependencies": { |
| 57 | + "astro": "^5.0.0" |
| 58 | + } |
57 | 59 | } |
0 commit comments