-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.2 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
48
49
50
51
52
53
54
{
"name": "astro-helmet",
"version": "1.0.5",
"type": "module",
"description": "A document head manager for astro.",
"author": "Ryan Voitiskis <[email protected]> (https://ryanvoitiskis.com/)",
"license": "ISC",
"exports": {
".": "./index.ts"
},
"files": [
"src",
"index.ts"
],
"keywords": [
"astro",
"astro-component",
"head",
"seo",
"meta-tags",
"html-head",
"helmet",
"document-head"
],
"scripts": {
"test": "vitest",
"coverage": "vitest run --coverage",
"release": "semantic-release"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@vitest/coverage-v8": "^2.1.8",
"astro": "^5.0.3",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"astro": "^4.0.0 || ^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-voitiskis/astro-helmet.git"
},
"bugs": {
"url": "https://github.com/ryan-voitiskis/astro-helmet/issues"
},
"homepage": "https://github.com/ryan-voitiskis/astro-helmet#readme"
}