-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
37 lines (37 loc) · 965 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
{
"name": "astro-social-share",
"description": "Social media share buttons for your Astro site",
"version": "2.1.0",
"type": "module",
"homepage": "https://github.com/silent1mezzo/astro-social-share#readme",
"exports": {
".": "./index.ts"
},
"files": [
"src",
"index.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/silent1mezzo/astro-social-share"
},
"bugs": "https://github.com/silent1mezzo/astro-social-share/issues",
"keywords": [
"astro-component",
"astro",
"withastro",
"astro-integration",
"social-media",
"social-share",
"share",
"icons"
],
"license": "MIT",
"scripts": {
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"devDependencies": {
"astro": "^4.11.3",
"vitest": "^1.6.0"
}
}