|
1 | 1 | { |
2 | 2 | "name": "@mannisto/astro-metadata", |
3 | 3 | "version": "1.0.0-beta.1", |
4 | | - "type": "module", |
5 | 4 | "description": "Astro components for managing your page head — metadata, social sharing, favicons, and SEO.", |
6 | 5 | "license": "MIT", |
| 6 | + "type": "module", |
7 | 7 | "homepage": "https://github.com/eremannisto/astro-metadata#readme", |
8 | 8 | "repository": { |
9 | 9 | "type": "git", |
|
12 | 12 | "bugs": { |
13 | 13 | "url": "https://github.com/eremannisto/astro-metadata/issues" |
14 | 14 | }, |
| 15 | + "keywords": [ |
| 16 | + "astro-component", |
| 17 | + "astro", |
| 18 | + "seo", |
| 19 | + "metadata" |
| 20 | + ], |
| 21 | + "exports": "./index.ts", |
15 | 22 | "files": [ |
16 | 23 | "src", |
17 | 24 | "index.ts" |
18 | 25 | ], |
19 | | - "exports": "./index.ts", |
| 26 | + "scripts": { |
| 27 | + "init": "bash scripts/init.sh", |
| 28 | + "lint": "biome lint ./src ./index.ts", |
| 29 | + "format": "prettier --write .", |
| 30 | + "check": "biome lint ./src ./index.ts && prettier --check .", |
| 31 | + "test:unit": "vitest run", |
| 32 | + "test:e2e": "playwright test", |
| 33 | + "test:all": "pnpm run test:unit && pnpm run test:e2e" |
| 34 | + }, |
20 | 35 | "peerDependencies": { |
21 | 36 | "astro": "^4.3.0 || ^5.0.0" |
22 | 37 | }, |
|
29 | 44 | "prettier-plugin-astro": "^0.14.1", |
30 | 45 | "typescript": "^5.9.3", |
31 | 46 | "vitest": "^4.0.18" |
32 | | - }, |
33 | | - "keywords": [ |
34 | | - "astro-component", |
35 | | - "astro", |
36 | | - "head", |
37 | | - "seo", |
38 | | - "meta" |
39 | | - ], |
40 | | - "scripts": { |
41 | | - "init": "bash scripts/init.sh", |
42 | | - "test:unit": "vitest run", |
43 | | - "test:e2e": "playwright test", |
44 | | - "test:all": "pnpm run test:unit && pnpm run test:e2e", |
45 | | - "lint": "biome lint ./src ./index.ts", |
46 | | - "format": "prettier --write .", |
47 | | - "check": "biome lint ./src ./index.ts && prettier --check .", |
48 | | - "check:fix": "biome lint --write ./src ./index.ts && prettier --write ." |
49 | 47 | } |
50 | 48 | } |
0 commit comments