mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
74 lines
1.7 KiB
JSON
74 lines
1.7 KiB
JSON
{
|
|
"name": "@graphql-hive/render-laboratory",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"description": "",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/graphql-hive/console.git",
|
|
"directory": "packages/render-laboratory"
|
|
},
|
|
"author": "Michael Skorokhodov <michael@the-guild.dev>",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"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"
|
|
}
|
|
},
|
|
"./*": {
|
|
"require": {
|
|
"types": "./dist/typings/*.d.cts",
|
|
"default": "./dist/cjs/*.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/esm/*.js"
|
|
},
|
|
"default": {
|
|
"types": "./dist/typings/*.d.ts",
|
|
"default": "./dist/esm/*.js"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"typings": "dist/typings/index.d.ts",
|
|
"keywords": [
|
|
"graphql",
|
|
"server",
|
|
"api",
|
|
"graphql-server"
|
|
],
|
|
"scripts": {
|
|
"build": "node scripts/yoga-bundle-string.mjs && bob build",
|
|
"check": "tsc --pretty --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@graphql-hive/laboratory": "workspace:*",
|
|
"graphql-yoga": "5.13.3"
|
|
},
|
|
"publishConfig": {
|
|
"directory": "dist",
|
|
"access": "public"
|
|
},
|
|
"buildOptions": {
|
|
"input": "./src/index.ts"
|
|
},
|
|
"typescript": {
|
|
"definition": "dist/typings/index.d.ts"
|
|
}
|
|
}
|