-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 992 Bytes
/
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
{
"name": "hello-astro",
"description": "An Astro component that returns a random greeting in a random language",
"version": "1.3.0",
"author": {
"name": "Pukima",
"email": "pukima@pukima.site"
},
"bugs": "https://github.com/Pukimaa/hello-astro/issues",
"homepage": "https://hello-astro.vercel.app/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/Pukimaa/hello-astro.git"
},
"keywords": [
"astro-component"
],
"type": "module",
"exports": "./src/index.ts",
"scripts": {
"start": "astro --root demo dev",
"build": "astro --root demo build",
"serve": "astro --root demo preview",
"commit": "cz",
"release": "standard-version"
},
"devDependencies": {
"astro": "^1.0.0-beta.5",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}