forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
54
55
56
57
{
"name": "@nuxtjs/apollo",
"version": "5.0.0-alpha.6",
"license": "MIT",
"repository": "https://github.com/nuxt-modules/apollo-module",
"homepage": "https://apollo.nuxtjs.org",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./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",
"dev: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.7.10",
"@nuxt/kit": "^3.3.1",
"@rollup/plugin-graphql": "^2.0.3",
"@vue/apollo-composable": "4.0.0-beta.8",
"@vue/apollo-option": "4.0.0-beta.5",
"defu": "^6.1.2",
"destr": "^1.2.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.12.0",
"jiti": "^1.18.2",
"ohash": "^1.0.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "^3.3.1",
"@nuxt/ui": "^0.4.1",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^18.15.3",
"eslint": "^8.36.0",
"nuxt": "^3.3.1"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/apollo": "link:."
},
"packageManager": "pnpm@7.29.1"
}