-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "github-discussions-blog-loader",
"version": "1.0.1",
"description": "GitHub Discussions Blog Loader for Astro",
"author": "Matt Brailsford",
"type": "module",
"exports": {
".": "./index.ts"
},
"files": [
"src",
"index.ts"
],
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"prepack": "npx mkdirp ./artifacts",
"pack": "npm pack --pack-destination ./artifacts"
},
"devDependencies": {
"astro": "^5.0.2",
"reading-time-estimator": "^1.11.0",
"slugify": "^1.6.6",
"string-strip-html": "^13.4.8",
"gray-matter": "^4.0.3",
"typescript": "^5.7.2",
"mkdirp": "^3.0.1"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"keywords": [
"astro-component",
"withastro",
"astro-loader"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mattbrailsford/github-discussions-blog-loader.git"
},
"homepage": "https://github.com/mattbrailsford/github-discussions-blog-loader"
}