Files
apollo/packages/vue-apollo-composable/package.json
T
2021-07-02 00:17:45 +02:00

51 lines
1.2 KiB
JSON

{
"name": "@vue/apollo-composable",
"version": "4.0.0-alpha.12",
"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",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"dev": "tsc -d -w --sourceMap",
"build": "rimraf dist && node esbuild.mjs && tsc -d --emitDeclarationOnly",
"prepublishOnly": "yarn test && yarn build",
"test": "yarn test:types",
"test:types": "tsc -p tests/types/"
},
"dependencies": {
"throttle-debounce": "^2.3.0",
"vue-demi": "^0.9.1"
},
"peerDependencies": {
"@apollo/client": "^3.2.1",
"graphql": "^15.3.0",
"vue": "^3.1.0"
},
"devDependencies": {
"@apollo/client": "^3.0.0",
"@types/throttle-debounce": "^2.1.0"
}
}