graphile-config
Version:
Standard plugin interface and helpers to be used across the Graphile stack.
66 lines • 1.52 kB
JSON
{
"name": "graphile-config",
"version": "0.0.1-beta.18",
"description": "Standard plugin interface and helpers to be used across the Graphile stack.",
"type": "commonjs",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./load": {
"types": "./dist/loadConfig.d.ts",
"default": "./dist/loadConfig.js"
},
"./cli": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
}
},
"scripts": {
"test": "mocha '__tests__/**/*.test.ts'",
"prepack": "tsc -b"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile/crystal.git"
},
"keywords": [
"graphile",
"plugin",
"graphite"
],
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile/crystal/issues"
},
"homepage": "https://graphile.org/graphile-build/",
"dependencies": {
"@types/interpret": "^1.1.3",
"@types/node": "^22.16.3",
"@types/semver": "^7.7.0",
"chalk": "^4.1.2",
"debug": "^4.4.1",
"interpret": "^3.1.1",
"semver": "^7.7.2",
"tslib": "^2.8.1",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16"
},
"files": [
"dist"
],
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mocha": "^10.0.10",
"chai": "^5.2.1",
"mocha": "^11.7.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}