-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (45 loc) · 1022 Bytes
/
package.json
File metadata and controls
53 lines (45 loc) · 1022 Bytes
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
48
49
50
51
52
53
{
"name": "astro-canonical",
"version": "1.0.0",
"description": "Build-time canonical URL validation for Astro. Enforces site origin and trailing slash rules and fails the build on SEO mistakes.",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup index.ts --format esm --dts --clean"
},
"keywords": [
"astro",
"withastro",
"astro-integration",
"seo",
"canonical",
"canonical-url",
"astro-canonical"
],
"repository": {
"type": "git",
"url": "https://github.com/velohost/astro-canonical.git"
},
"homepage": "https://github.com/velohost/astro-canonical",
"bugs": {
"url": "https://github.com/velohost/astro-canonical/issues"
},
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"astro": "^5.16.6",
"tsup": "^8.5.1"
}
}