astro-loader-github-prs
Version:
Astro loader for loading GitHub pull requests with a search query.
52 lines • 1.47 kB
JSON
{
"name": "astro-loader-github-prs",
"version": "1.2.1",
"description": "Astro loader for loading GitHub pull requests with a search query.",
"author": "Stephanie Lin <norwaywoods047@gmail.com>",
"license": "MIT",
"keywords": [
"withastro",
"astro-loader",
"github",
"pull-request",
"pull-requests",
"pr",
"search"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lin-stephanie/astro-loaders.git",
"directory": "packages/astro-loader-github-prs"
},
"homepage": "https://github.com/lin-stephanie/astro-loaders/blob/main/packages/astro-loader-github-prs/",
"bugs": "https://github.com/lin-stephanie/astro-loaders/issues",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"dependencies": {
"octokit": "^4.1.2"
},
"peerDependencies": {
"astro": ">=4.14.0 <6.0.0"
},
"publishConfig": {
"provenance": true
},
"scripts": {
"dev": "tsup src/index.ts --format esm --dts --watch",
"build": "tsup src/index.ts --format esm --dts --clean --treeshake",
"postbuild": "copyfiles -u 1 src/**/*.graphql dist",
"check": "publint && pnpm pack | grep '.tgz$' | xargs attw --ignore-rules=cjs-resolves-to-esm",
"generate": "graphql-codegen --config codegen.config.ts"
}
}