forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@nuxtjs/apollo",
"version": "5.0.0-alpha.3",
"license": "MIT",
"repository": "https://github.com/nuxt-modules/apollo-module",
"homepage": "https://apollo.nuxtjs.org",
"type": "module",
"exports": {
".": "./dist/module.mjs"
},
"main": "./dist/module.mjs",
"types": "./dist/module.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "nuxt-module-build",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"prepare": "nuxt-module-build --stub && nuxi prepare playground",
"release": "standard-version --prerelease alpha && git push --follow-tags && pnpm publish --tag next"
},
"dependencies": {
"@apollo/client": "^3.6.9",
"@nuxt/kit": "^3.0.0-rc.11",
"@nuxt/module-builder": "^0.2.0",
"@rollup/plugin-graphql": "^1.1.0",
"@vue/apollo-composable": "4.0.0-beta.1",
"cookie-es": "^0.5.0",
"defu": "^6.0.0",
"destr": "^1.2.0",
"graphql": "^16.5.0",
"graphql-ws": "^5.11.2",
"jiti": "^1.15.0",
"ohash": "^0.1.5"
},
"devDependencies": {
"@nuxt/ui": "^0.3.3",
"@nuxtjs/eslint-config-typescript": "latest",
"eslint": "^8.25.0",
"graphql-tag": "latest",
"nuxt": "^3.0.0-rc.11",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/apollo": "link:."
},
"packageManager": "[email protected]"
}