console/packages/libraries/render-laboratory/package.json
TheGuildBot b35f9fbc1f
Some checks failed
ci / package (push) Has been cancelled
ci / build (push) Has been cancelled
ci / publish_docker_cli (push) Has been cancelled
ci / trigger staging deployment (push) Has been cancelled
ci / code-style (push) Has been cancelled
ci / typescript (push) Has been cancelled
ci / graphql-schema (push) Has been cancelled
Upcoming Release Changes (#7995)
2026-04-17 14:33:30 +02:00

74 lines
1.7 KiB
JSON

{
"name": "@graphql-hive/render-laboratory",
"version": "0.1.5",
"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"
}
}