@matters/apollo-response-cache
Version:
Caching and invalidation mechanisms (plugins, directives) of Apollo GraphQL
74 lines (73 loc) • 1.75 kB
JSON
{
"name": "@matters/apollo-response-cache",
"version": "2.1.0",
"description": "Caching and invalidation mechanisms (plugins, directives) of Apollo GraphQL",
"author": "Matters <hi@matters.news>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thematters/apollo-response-cache/issues"
},
"homepage": "https://github.com/thematters/apollo-response-cache#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"engines": {
"node": ">=16"
},
"scripts": {
"build": "rimraf dist/**/* && tsc",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"lint": "eslint . --ext .ts,.tsx",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thematters/apollo-response-cache.git"
},
"keywords": [
"apollo",
"graphql",
"apollo-graphql",
"cache",
"caching",
"directive",
"plugin"
],
"dependencies": {
"@apollo/cache-control-types": "^1.0.3"
},
"devDependencies": {
"@apollo/server": "^4.7.3",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"cz": "^1.8.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"husky": "^8.0.3",
"ioredis": "^5.3.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@apollo/server": ">=4.0.0"
},
"files": [
"dist/**/*"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}