astro-gists/package/package.json

57 lines
1.4 KiB
JSON
Raw Normal View History

2024-02-24 02:44:44 +00:00
{
2024-02-24 03:03:06 +00:00
"name": "@matthiesenxyz/astro-gists",
"version": "0.2.12",
2024-02-24 03:34:15 +00:00
"description": "Allows the user to import GitHub Gists by ID through an Astro Component and Octokit",
2024-02-24 02:44:44 +00:00
"author": {
2024-02-24 03:03:06 +00:00
"email": "adam@matthiesen.xyz",
2024-02-25 10:35:01 +00:00
"name": "Adam Matthiesen - MatthiesenXYZ",
2024-02-24 03:03:06 +00:00
"url": "https://matthiesen.xyz"
2024-02-24 02:44:44 +00:00
},
"license": "MIT",
"keywords": [
"astro-integration",
"astro-component",
"withastro",
"astro",
2024-02-24 03:03:06 +00:00
"github",
"gist",
"octokit"
2024-02-24 02:44:44 +00:00
],
2024-02-24 03:03:06 +00:00
"homepage": "https://github.com/MatthiesenXYZ/astro-gists",
2024-02-25 10:35:01 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/MatthiesenXYZ/astro-gists.git"
},
"bugs": {
"url": "https://github.com/MatthiesenXYZ/astro-gists/issues"
},
2024-02-24 02:44:44 +00:00
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"exports": {
2024-02-24 09:47:57 +00:00
".": "./src/index.ts",
"./components": "./src/components/index.ts",
"./GetGist": "./src/components/GetGist.astro",
"./GetGistGroup": "./src/components/GetGistGroup.astro"
2024-02-24 02:44:44 +00:00
},
"scripts": {},
"type": "module",
"peerDependencies": {
"astro": "^4.4.1"
2024-02-24 02:44:44 +00:00
},
"devDependencies": {
"@octokit/types": "^12.6.0"
},
2024-02-24 02:44:44 +00:00
"dependencies": {
"@expressive-code/plugin-line-numbers": "^0.33.5",
2024-03-22 08:48:20 +00:00
"astro-integration-kit": "^0.7.1",
"chalk": "5.3.0",
"expressive-code": "^0.33.5",
"hast-util-to-html": "8.0.4",
"p-retry": "6.2.0",
2024-02-25 10:35:01 +00:00
"octokit": "^3.1.2",
"vite": "^5.1.6"
2024-02-24 02:44:44 +00:00
}
2024-02-24 03:03:06 +00:00
}