Files
apollo/packages/vue-apollo-composable/package.json
T
2020-10-15 18:03:51 +02:00

52 lines
1.2 KiB
JSON

{
"name": "@vue/apollo-composable",
"version": "4.0.0-alpha.10",
"description": "Apollo GraphQL for Vue Composition API",
"repository": {
"type": "git",
"url": "git+https://github.com/Akryum/vue-apollo.git"
},
"keywords": [
"vue",
"apollo",
"graphql",
"composition"
],
"author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Akryum/vue-apollo/issues"
},
"homepage": "https://github.com/Akryum/vue-apollo#readme",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "yarn build --watch",
"build": "tsc --outDir dist -d",
"prepublishOnly": "yarn test && yarn build",
"test": "yarn test:types",
"test:types": "tsc -p tests/types/"
},
"dependencies": {
"throttle-debounce": "^2.3.0",
"vue-demi": "^0.4.0"
},
"peerDependencies": {
"@apollo/client": "^3.2.1",
"@vue/composition-api": "^1.0.0-beta.16",
"graphql": "^14.5.8",
"vue": "^2.6.10"
},
"devDependencies": {
"@types/throttle-debounce": "^2.1.0",
"@vue/composition-api": "^1.0.0-beta.16",
"typescript": "^4"
}
}