astro-gists/package/package.json

62 lines
1.6 KiB
JSON
Raw Permalink 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.3.2",
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": {
".": {
"types": "./src/index.d.ts",
"import": "./src/index.ts"
},
2024-02-24 09:47:57 +00:00
"./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": {
2024-04-26 10:10:17 +00:00
"astro": ">=4.5.0"
2024-02-24 02:44:44 +00:00
},
"devDependencies": {
2024-04-26 10:10:17 +00:00
"@octokit/types": "^13.4.1"
},
2024-02-24 02:44:44 +00:00
"dependencies": {
2024-04-26 10:10:17 +00:00
"@expressive-code/core": "^0.35.2",
"@expressive-code/plugin-frames": "^0.35.2",
"@expressive-code/plugin-shiki": "^0.35.2",
"@expressive-code/plugin-text-markers": "^0.35.2",
"@expressive-code/plugin-line-numbers": "^0.35.2",
"astro-integration-kit": "^0.12.0",
2024-04-01 12:34:08 +00:00
"chalk": "^5.3.0",
2024-04-26 10:10:17 +00:00
"p-retry": "^6.2.0",
"octokit": "^3.2.0",
"vite": "^5.2.10"
2024-02-24 02:44:44 +00:00
}
2024-02-24 03:03:06 +00:00
}