-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.35 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
55
56
57
58
59
60
61
{
"name": "astro-matomo",
"version": "1.6.0",
"description": "Matomo integration for Astro",
"type": "module",
"exports": {
".": "./src/index.ts",
"./matomo.ts": "./src/matomo.ts"
},
"main": "src/index.ts",
"files": [
"src"
],
"keywords": [
"astro",
"astro.js",
"withastro",
"astro-integration",
"matomo",
"analytics",
"tracking"
],
"author": {
"name": "Felix Scholze",
"email": "[email protected]",
"url": "https://webshaped.de"
},
"homepage": "https://github.com/felix-berlin/astro-matomo",
"funding": [
{
"type": "PayPal",
"url": "https://paypal.me/FelixScholze"
},
{
"type": "Buy me a coffee",
"url": "https://www.buymeacoffee.com/felixberlin"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/felix-berlin/astro-matomo/issues"
},
"scripts": {
"release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felix-berlin/astro-matomo.git"
},
"workspaces": [
"demo"
],
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^23.0.8"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0 || ^3.0.0 || ^4.0.0"
}
}