UNPKG

vue-apollo

Version:

Use Apollo and GraphQL with Vue.js

81 lines (80 loc) 2.44 kB
{ "name": "vue-apollo", "version": "3.1.2", "description": "Use Apollo and GraphQL with Vue.js", "main": "dist/vue-apollo.umd.js", "module": "dist/vue-apollo.esm.js", "unpkg": "dist/vue-apollo.min.js", "typings": "types/index.d.ts", "scripts": { "build": "yarn build:browser && yarn build:es && yarn build:umd", "build:browser": "rollup --config build/rollup.config.browser.js", "build:es": "rollup --config build/rollup.config.es.js", "build:umd": "rollup --config build/rollup.config.umd.js", "prepublishOnly": "yarn test && yarn build", "dev": "nodemon --exec 'yarn build:es && yarn build:umd' --watch src --watch lib", "test": "yarn build && yarn test:types && yarn run test:unit", "test:types": "tsc -p types/test", "test:unit": "yarn run jest" }, "repository": { "type": "git", "url": "git+https://github.com/Akryum/vue-apollo.git" }, "keywords": [ "vue", "apollo", "graphql" ], "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" }, "peerDependencies": { "graphql-tag": "^2" }, "dependencies": { "chalk": "^2.4.2", "serialize-javascript": "^4.0.0", "throttle-debounce": "^2.1.0" }, "devDependencies": { "@apollo/client": "^3.2.1", "@babel/core": "^7.1.2", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-transform-for-of": "^7.4.4", "@babel/preset-env": "^7.1.0", "@types/graphql": "^14.0.1", "@vue/test-utils": "^1.0.0-beta.25", "apollo-cache-inmemory": "^1.2.9", "babel-core": "^7.0.0-bridge.0", "cross-env": "^7.0.3", "graphql": "^15.5.0", "graphql-tag": "^2.5.0", "jest": "^26.6.3", "nodemon": "^2.0.7", "rimraf": "^3.0.0", "rollup": "^1.21.2", "rollup-plugin-babel": "^4.0.2", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-uglify": "^6.0.0", "typescript": "^4.1.5", "uglify-es": "^3.1.6", "vue": "^2.5.16", "vue-property-decorator": "^8.2.2" }, "resolutions": { "js-yaml": "^3.13.1" }, "jest": { "testRegex": "tests/unit/.*\\.test.js$" }, "gitHead": "92038a46820dca8fc9bfe94520816d0959a41003" }