graphitation/packages/graphql-js-tag/package.json

46 строки
1.1 KiB
JSON

{
"name": "@graphitation/graphql-js-tag",
"description": "A simple graphql-js AST based `graphql` tagged template function.",
"license": "MIT",
"version": "0.9.4",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/graphitation.git",
"directory": "packages/graphql-js-tag"
},
"main": "./src/index.ts",
"scripts": {
"build": "monorepo-scripts build",
"lint": "monorepo-scripts lint",
"test": "monorepo-scripts test",
"types": "monorepo-scripts types",
"just": "monorepo-scripts"
},
"devDependencies": {
"@types/invariant": "^2.0.0",
"@types/jest": "^26.0.22",
"graphql": "^15.0.0",
"monorepo-scripts": "*"
},
"sideEffects": false,
"access": "public",
"publishConfig": {
"main": "./lib/index",
"types": "./lib/index.d.ts",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
}
},
"dependencies": {
"invariant": "^2.0.0"
},
"peerDependencies": {
"graphql": "^15.0.0"
}
}