-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "@igor.dvlpr/astro-post-excerpt",
"version": "3.0.4",
"description": "⭐ An Astro component that renders post excerpts for your Astro blog - directly from your Markdown and MDX files. Astro v2+ collections are supported as well! 💎",
"type": "module",
"engines": {
"node": "^18.17.1 || ^20.3.0 || >=21.0.0"
},
"files": [
"dist",
"index.ts",
"PostExcerpt.astro"
],
"module": "index.ts",
"scripts": {
"pub": "npm publish --access public"
},
"keywords": [
"astro-component",
"withastro",
"renderer",
"ui",
"astro",
"post",
"excerpt",
"summary",
"blog",
"component",
"jsx",
"article",
"igorskyflyer",
"igor.dvlpr"
],
"license": "MIT",
"author": "Igor Dimitrijević <[email protected]> (https://github.com/igorskyflyer)",
"funding": "https://ko-fi.com/igorskyflyer",
"homepage": "https://github.com/igorskyflyer/npm-astro-post-excerpt",
"repository": {
"type": "git",
"url": "git+https://github.com/igorskyflyer/npm-astro-post-excerpt.git"
},
"bugs": {
"url": "https://github.com/igorskyflyer/npm-astro-post-excerpt/issues"
},
"dependencies": {
"@igor.dvlpr/strip-yaml-front-matter": "^1.0.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-mdx": "^3.0.0",
"micromark-extension-mdxjs": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"astro": "^4.11.5",
"prettier": "^3.3.2"
},
"peerDependencies": {
"astro": ">=1.0.0"
}
}