-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 983 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 983 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
{
"name": "astro-headers",
"type": "module",
"version": "0.0.7",
"description": "Collection of configurable headers for astro",
"homepage": "https://github.com/warpsio/astro-headers",
"bugs": {
"url": "https://github.com/warpsio/astro-headers/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/warpsio/astro-headers"
},
"files": [
"src/index.js",
"src/Header.astro"
],
"exports": "./src/index.js",
"keywords": [
"astro-component",
"astro"
],
"author": "Giulio Zanchetta",
"license": "MIT",
"scripts": {
"dev": "astro dev --host",
"preview": "astro preview",
"format": "yarn prettier -w ./src",
"release": "standard-version"
},
"devDependencies": {
"astro": "^2.6.4",
"prettier": "^2.8.8",
"prettier-plugin-astro": "^0.10.0",
"sass": "^1.63.4",
"standard-version": "^9.5.0"
},
"dependencies": {
"astro-icon": "^0.8.1",
"astro-image": "^0.0.7",
"astro-localization": "^0.0.7",
"astro-theme": "^0.0.7"
}
}