UNPKG

@vue/apollo-ssr

Version:

Apollo GraphQL for Vue - Server Side Rendering utilities

51 lines 1.27 kB
{ "name": "@vue/apollo-ssr", "version": "4.2.2", "description": "Apollo GraphQL for Vue - Server Side Rendering utilities", "author": "Guillaume Chau <guillaume.b.chau@gmail.com>", "license": "MIT", "homepage": "https://apollo.vuejs.org/", "repository": { "type": "git", "url": "https://github.com/vuejs/vue-apollo.git", "directory": "packages/vue-apollo-ssr" }, "bugs": { "url": "https://github.com/vuejs/vue-apollo/issues" }, "keywords": [ "vue", "apollo", "graphql", "ssr" ], "publishConfig": { "access": "public" }, "exports": { ".": { "types": "./dist/esm/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "./*": "./*" }, "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "files": [ "dist" ], "dependencies": { "serialize-javascript": "^6.0.1" }, "devDependencies": { "@apollo/client": "^3.7.7", "@types/serialize-javascript": "^5.0.2", "typescript": "^4.7.4" }, "scripts": { "dev": "pnpm run build --watch", "build": "rm -rf dist && tsc --outDir dist/esm -d && tsc --outDir dist/cjs --module commonjs --target ES2015 && node ./build.mjs" } }