console/packages/libraries/core/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2022-05-18 07:26:57 +00:00
{
"name": "@graphql-hive/core",
"version": "0.2.4",
"type": "module",
2022-05-18 07:26:57 +00:00
"repository": {
"type": "git",
"url": "kamilkisiela/graphql-hive",
"directory": "packages/libraries/core"
},
"homepage": "https://graphql-hive.com",
"author": {
"email": "contact@the-guild.dev",
"name": "The Guild",
"url": "https://the-guild.dev"
},
2022-05-18 07:26:57 +00:00
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
2022-05-18 07:26:57 +00:00
"exports": {
".": {
"require": {
"types": "./dist/typings/index.d.cts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
},
"default": {
"types": "./dist/typings/index.d.ts",
"default": "./dist/esm/index.js"
}
2022-05-18 07:26:57 +00:00
},
"./package.json": "./package.json"
},
"typings": "dist/typings/index.d.ts",
2022-05-18 07:26:57 +00:00
"scripts": {
"build": "bob build",
"check:build": "bob check"
2022-05-18 07:26:57 +00:00
},
"peerDependencies": {
"graphql": "^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"lodash.sortby": "4.7.0"
},
"devDependencies": {
"@types/lodash.sortby": "4.7.9",
"graphql": "16.8.1",
"tslib": "2.6.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"directory": "dist"
},
"sideEffects": false,
"typescript": {
"definition": "dist/typings/index.d.ts"
2022-05-18 07:26:57 +00:00
}
}