55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "@vue/apollo-composable",
|
|
"version": "4.0.0-alpha.14",
|
|
"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": "rimraf dist && nodemon --exec 'yarn build:code' --watch src --ext js,ts",
|
|
"build": "rimraf dist && yarn run build:code",
|
|
"build:code": "node esbuild.mjs && tsc -d --emitDeclarationOnly",
|
|
"prepublishOnly": "yarn test && yarn build",
|
|
"test": "yarn test:types",
|
|
"test:types": "tsc -p tests/types/"
|
|
},
|
|
"dependencies": {
|
|
"throttle-debounce": "^3.0.1",
|
|
"ts-essentials": "^8.1.0",
|
|
"vue-demi": "^0.11.4"
|
|
},
|
|
"peerDependencies": {
|
|
"@apollo/client": "^3.4.13",
|
|
"graphql": "^15.3.0",
|
|
"vue": "^2.6.0 || ^3.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@apollo/client": "^3.4.0",
|
|
"@types/throttle-debounce": "^2.1.0",
|
|
"nodemon": "^1.18.4",
|
|
"vue": "^3.1.0"
|
|
}
|
|
}
|