-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
47 lines (47 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "astro-seo",
"version": "0.8.4",
"description": "Makes it easy to add SEO relevant tags to your Astro app.",
"homepage": "https://github.com/jonasmerlin/astro-seo#readme",
"bugs": {
"url": "https://github.com/jonasmerlin/astro-seo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jonasmerlin/astro-seo"
},
"files": [
"index.ts",
"src/index.ts",
"src/SEO.astro",
"src/components"
],
"exports": "./index.ts",
"keywords": [
"astro-component",
"seo"
],
"author": "Jonas Schumacher",
"license": "MIT",
"scripts": {
"cypress:open": "cypress open",
"dev": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"start": "astro preview",
"format": "prettier -w ./src",
"check:format": "prettier -c ./src",
"release": "standard-version",
"check": "astro check"
},
"devDependencies": {
"astro": "^4.4.0",
"cypress": "^13.0.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"standard-version": "^9.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@astrojs/check": "^0.5.4"
}
}