Add package descriptions (#1997)
This commit is contained in:
parent
7a7427e425
commit
60c5eb6ad5
7 changed files with 39 additions and 2 deletions
|
@ -1,8 +1,10 @@
|
||||||
{
|
{
|
||||||
"name": "astro",
|
"name": "astro",
|
||||||
"version": "0.21.2",
|
"version": "0.21.2",
|
||||||
"author": "Skypack",
|
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
|
||||||
|
"author": "withastro",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"homepage": "https://astro.build",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./dist/types/@types/astro.d.ts",
|
"types": "./dist/types/@types/astro.d.ts",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-lit",
|
"name": "@astrojs/renderer-lit",
|
||||||
"version": "0.2.1",
|
"version": "0.2.1",
|
||||||
"description": "A Lit renderer for Astro",
|
"description": "Use Lit components within Astro",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-lit"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-preact",
|
"name": "@astrojs/renderer-preact",
|
||||||
|
"description": "Use Preact components within Astro",
|
||||||
"version": "0.3.0",
|
"version": "0.3.0",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-preact"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-react",
|
"name": "@astrojs/renderer-react",
|
||||||
|
"description": "Use React components within Astro",
|
||||||
"version": "0.3.0",
|
"version": "0.3.0",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-react"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-solid",
|
"name": "@astrojs/renderer-solid",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
|
"description": "Use Solid components within Astro",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-solid"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-svelte",
|
"name": "@astrojs/renderer-svelte",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
|
"description": "Use Svelte components within Astro",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-svelte"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
|
@ -1,6 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@astrojs/renderer-vue",
|
"name": "@astrojs/renderer-vue",
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
|
"description": "Use Vue components within Astro",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/withastro/astro.git",
|
||||||
|
"directory": "packages/renderers/renderer-vue"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": "./index.js",
|
".": "./index.js",
|
||||||
|
|
Loading…
Reference in a new issue