-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 834 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 834 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
{
"name": "astro-utils",
"type": "module",
"version": "0.0.7",
"description": "Various utils for astro",
"homepage": "https://github.com/warpsio/astro-utils",
"bugs": {
"url": "https://github.com/warpsio/astro-utils/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/warpsio/astro-utils"
},
"files": [
"src/index.js",
"src/GoTopWithProgress.astro"
],
"exports": "./src/index.js",
"keywords": [
"astro-component",
"astro",
"astro utils",
"astro-utils"
],
"author": "Giulio Zanchetta",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"preview": "astro preview",
"format": "yarn prettier -w ./src",
"release": "standard-version"
},
"devDependencies": {
"astro": "^1.1.1",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.5.3",
"standard-version": "^9.5.0"
}
}