1.1.1 • Published 5 months ago

gatsby-source-package v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

gatsby-source-package

This plugin allows you to source the contents of package.json.

Install

npm install --save gatsby-source-package

or

yarn add gatsby-source-package

How to use

Add the plugin to gatsby-config.js..

module.exports = {
  plugins: [...`gatsby-source-package`],
};

You may only source some of the keys in package.json:

module.exports = {
  plugins: [
    {
      resolve: `gatsby-source-package`,
      options: {
        only: ['name', 'version', 'description'],
      },
    },
  ],
};

Query package.json

The GraphQL query will match your package.json:

query {
  package {
    name
    version
    description
  }
}

Result:

{
  "data": {
    "package": {
      "name": "gatsby-starter-hello-world",
      "version": "0.1.0",
      "description": "A simplified bare-bones starter for Gatsby"
    }
  },
  "extensions": {}
}
1.1.1

5 months ago

1.0.1

2 years ago

1.0.0

3 years ago