-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
78 lines (78 loc) · 1.91 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "astro-breadcrumbs",
"version": "3.3.1",
"description": "Well configurable breadcrumb component for Astro.js. Create breadcrumbs completely dynamically or specify exactly how they should look.",
"type": "module",
"exports": {
".": "./index.ts",
"./breadcrumbs.css": "./src/breadcrumbs.css",
"./breadcrumbs.scss": "./src/breadcrumbs.scss"
},
"main": "index.ts",
"workspaces": [
"demo",
"docs"
],
"scripts": {
"release": "semantic-release --branches main",
"test:unit": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/felix-berlin/astro-breadcrumbs.git"
},
"keywords": [
"astro",
"astro.js",
"astro-component",
"withastro",
"breadcrumbs",
"a11y",
"accessibility",
"ui",
"css",
"structured data schema"
],
"author": {
"name": "Felix Scholze",
"email": "[email protected]",
"url": "https://webshaped.de"
},
"funding": [
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/felix-berlin"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/felixberlin"
},
{
"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-breadcrumbs/issues"
},
"homepage": "https://docs.astro-breadcrumbs.kasimir.dev",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@vitest/coverage-v8": "2.1.6",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"semantic-release": "^24.2.0",
"vitest": "2.1.6"
},
"peerDependencies": {
"astro": "^2.0.0-beta.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"packageManager": "[email protected]"
}