Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1const rootPkg = require('../../package.json');
2const gqlPkg = require('graphql/package.json');
3
4export default JSON.stringify(
5 {
6 ...gqlPkg,
7 name: 'graphql-web-lite',
8 version: rootPkg.version,
9 sideEffects: false,
10 homepage: rootPkg.homepage,
11 bugs: rootPkg.bugs,
12 repository: rootPkg.repository,
13 keywords: rootPkg.keywords,
14 },
15 null,
16 2
17);