astro-gists/package/package.json

53 lines
1.3 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.5",
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
},
"dependencies": {
2024-02-25 10:35:01 +00:00
"@expressive-code/plugin-line-numbers": "^0.33.4",
"@octokit/types": "^12.6.0",
Bump the prod-dependencies group with 3 updates Bumps the prod-dependencies group with 3 updates: [astro-integration-kit](https://github.com/florian-lefebvre/astro-integration-kit), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `astro-integration-kit` from 0.4.0 to 0.5.1 - [Release notes](https://github.com/florian-lefebvre/astro-integration-kit/releases) - [Commits](https://github.com/florian-lefebvre/astro-integration-kit/compare/astro-integration-kit@0.4.0...astro-integration-kit@0.5.1) Updates `vite` from 5.1.4 to 5.1.5 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.1.5/packages/vite) Updates `astro` from 4.4.4 to 4.4.11 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@4.4.11/packages/astro) --- updated-dependencies: - dependency-name: astro-integration-kit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: prod-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies - dependency-name: astro dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-05 05:35:47 +00:00
"astro-integration-kit": "^0.5.1",
"expressive-code": "^0.33.4",
"hast-util-to-html": "^8.0.4",
2024-02-25 10:35:01 +00:00
"octokit": "^3.1.2",
Bump the prod-dependencies group with 3 updates Bumps the prod-dependencies group with 3 updates: [astro-integration-kit](https://github.com/florian-lefebvre/astro-integration-kit), [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `astro-integration-kit` from 0.4.0 to 0.5.1 - [Release notes](https://github.com/florian-lefebvre/astro-integration-kit/releases) - [Commits](https://github.com/florian-lefebvre/astro-integration-kit/compare/astro-integration-kit@0.4.0...astro-integration-kit@0.5.1) Updates `vite` from 5.1.4 to 5.1.5 - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v5.1.5/packages/vite) Updates `astro` from 4.4.4 to 4.4.11 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@4.4.11/packages/astro) --- updated-dependencies: - dependency-name: astro-integration-kit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: prod-dependencies - dependency-name: vite dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies - dependency-name: astro dependency-type: direct:production update-type: version-update:semver-patch dependency-group: prod-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-05 05:35:47 +00:00
"vite": "^5.1.5"
2024-02-24 02:44:44 +00:00
}
2024-02-24 03:03:06 +00:00
}