-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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-repos-astro-loader",
"version": "1.2.1",
"description": "An Astro loader to fetch GitHub repositories for use as content in Astro websites",
"repository": "https://github.com/casraf/github-repos-astro-loader",
"author": "Chen Asraf <contact@casraf.dev>",
"license": "MIT",
"keywords": [
"astro",
"astro-loader",
"loader",
"github",
"repositories",
"repository"
],
"main": "index.js",
"type": "module",
"scripts": {
"ci": "pnpm install --frozen-lockfile",
"dev": "rm -rf build && mkdir build && cp README.md package.json build/ && tsc --watch",
"build": "tsc && cp README.md package.json build/",
"test": "vitest"
},
"devDependencies": {
"@astropub/md": "^1.0.0",
"@eslint/js": "^10.0.1",
"@octokit/types": "^16.0.0",
"@types/node": "^25.3.3",
"astro": "^5.18.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"peerDependencies": {
"@astropub/md": "*",
"@octokit/types": "*",
"astro": "*",
"date-fns": "*",
"yaml": "*",
"zod": "*"
}
}