Skip to content

Commit 7dd1f79

Browse files
committed
Chore: Update package order
1 parent 297ba8d commit 7dd1f79

File tree

1 file changed

+17
-19
lines changed

1 file changed

+17
-19
lines changed

package.json

Lines changed: 17 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "@mannisto/astro-metadata",
33
"version": "1.0.0-beta.1",
4-
"type": "module",
54
"description": "Astro components for managing your page head — metadata, social sharing, favicons, and SEO.",
65
"license": "MIT",
6+
"type": "module",
77
"homepage": "https://github.com/eremannisto/astro-metadata#readme",
88
"repository": {
99
"type": "git",
@@ -12,11 +12,26 @@
1212
"bugs": {
1313
"url": "https://github.com/eremannisto/astro-metadata/issues"
1414
},
15+
"keywords": [
16+
"astro-component",
17+
"astro",
18+
"seo",
19+
"metadata"
20+
],
21+
"exports": "./index.ts",
1522
"files": [
1623
"src",
1724
"index.ts"
1825
],
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+
},
2035
"peerDependencies": {
2136
"astro": "^4.3.0 || ^5.0.0"
2237
},
@@ -29,22 +44,5 @@
2944
"prettier-plugin-astro": "^0.14.1",
3045
"typescript": "^5.9.3",
3146
"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 ."
4947
}
5048
}

0 commit comments

Comments
 (0)