forked from nuxt-modules/apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.5 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.11",
"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 build",
"prepack": "pnpm build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxi prepare playground",
"release": "standard-version --prerelease alpha && git push --follow-tags && pnpm publish --tag next"
},
"dependencies": {
"@apollo/client": "^3.8.8",
"@nuxt/kit": "^3.8.2",
"@rollup/plugin-graphql": "^2.0.4",
"@vue/apollo-composable": "4.0.0-beta.12",
"@vue/apollo-option": "4.0.0-beta.12",
"defu": "^6.1.3",
"destr": "^2.0.2",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.14.2",
"jiti": "^1.21.0",
"ohash": "^1.1.3"
},
"devDependencies": {
"@nuxt/module-builder": "^0.5.4",
"@nuxt/schema": "^3.8.2",
"@nuxt/ui": "^0.4.1",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.10.4",
"eslint": "^8.55.0",
"nuxt": "^3.8.2"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"@nuxtjs/apollo": "link:."
},
"packageManager": "[email protected]"
}