astro-gists/package/package.json

49 lines
1.2 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",
2024-02-24 17:07:27 +00:00
"version": "0.0.3",
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",
"name": "Adam Matthiesen",
"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-24 02:44:44 +00:00
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"exports": {
2024-02-24 09:47:57 +00:00
".": "./src/index.ts",
"./expressive-code": {
"types": "./expressive-code.d.ts",
"default": "./expressive-code.mjs"
},
"./internal": "./internal.ts",
"./components": "./src/components/index.ts",
"./components/*": "./src/components/*"
2024-02-24 02:44:44 +00:00
},
"scripts": {},
"type": "module",
"peerDependencies": {
2024-02-24 09:47:57 +00:00
"astro": "^4.4.0"
2024-02-24 02:44:44 +00:00
},
"dependencies": {
2024-02-24 09:47:57 +00:00
"@octokit/types": "12.6.0",
"@expressive-code/plugin-line-numbers": "0.33.4",
"astro-integration-kit": "^0.3.0",
"astro-expressive-code": "^0.33.4",
"octokit": "3.1.2",
"vite": "5.1.4"
2024-02-24 02:44:44 +00:00
}
2024-02-24 03:03:06 +00:00
}